Created
January 2, 2012 22:40
-
-
Save justinpeterman/1552447 to your computer and use it in GitHub Desktop.
ios 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
@media screen and (max-width: 1024px) /*iPad Landscpae*/ { | |
// CSS styles | |
} | |
@media screen and (max-width: 770px) /*iPad Portrait */ { | |
// CSS styles | |
} | |
@media screen and (max-width: 480px) /*iPhone Landscape */ { | |
// CSS styles | |
} | |
@media screen and (max-width: 320px) /*iPhone Portrait */ { | |
// CSS styles | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment