Created
February 21, 2012 14:28
-
-
Save ashleydw/1876783 to your computer and use it in GitHub Desktop.
CSS 3 Inline Media Queries
This file contains 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
/* mobile (portrait and landscape) ----------- */ | |
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) { | |
} | |
/* mobile (landscape) ----------- */ | |
@media only screen and (min-width : 321px) { | |
} | |
/* mobile (portrait) ----------- */ | |
@media only screen and (max-width : 320px) { | |
} | |
/* tablets (portrait and landscape) ----------- */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { | |
} | |
/* tablets (landscape) ----------- */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { | |
} | |
/* tablets (portrait) */ | |
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment