Created
May 12, 2016 00:09
-
-
Save Donmclean/d91c614f9a49f0141a31831b959d8e2b to your computer and use it in GitHub Desktop.
iPad Specific Media Queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media only screen and (device-width: 768px) { | |
| /* For general iPad layouts */ | |
| } | |
| @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { | |
| /* For portrait layouts only */ | |
| } | |
| @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) { | |
| /* For landscape layouts only */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment