Skip to content

Instantly share code, notes, and snippets.

@larswittenberg
Created June 27, 2012 09:28
Show Gist options
  • Save larswittenberg/3002863 to your computer and use it in GitHub Desktop.
Save larswittenberg/3002863 to your computer and use it in GitHub Desktop.
Media Queries
/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)
{ }
/* iPads (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