Skip to content

Instantly share code, notes, and snippets.

@jserrao
Created May 13, 2014 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jserrao/f49eb3e004fbd82ca7d0 to your computer and use it in GitHub Desktop.
Save jserrao/f49eb3e004fbd82ca7d0 to your computer and use it in GitHub Desktop.
Media Queries for iPad
/* CSS for iPad in Portrait (includes iPad mini, iPad air, etc) */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) { }
/* CSS for iPad in Landscape (includes iPad mini, iPad air, etc) */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) { }
/* Target Landscape and Portrait iPad in oen call */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait), @media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment