问题
I'm wonder is there media query for iBooks. I know there is for kindle but I cant find any for iBooks. Is media query for web (from this website will work on iBooks?
thanks for any help.
回答1:
yes, you can use web browser-style media queries for iBooks, although right now iBooks doesn't seem to support orientation : landscape
or orientation : portrait
.
it's important that you include them as links in your HTML's head rather than directly in the stylesheet:
<link type="text/css" rel="stylesheet" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px)" href="../Styles/iPad-styles.css" />
including them in the stylesheet can cause some readers to fail loading the entire stylesheet.
来源:https://stackoverflow.com/questions/19488854/media-queries-for-ibooks