Skip to content

Instantly share code, notes, and snippets.

@budparr
Created March 12, 2012 02:23
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 budparr/2019326 to your computer and use it in GitHub Desktop.
Save budparr/2019326 to your computer and use it in GitHub Desktop.
iPad media queries
@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 */
}
@budparr
Copy link
Author

budparr commented Mar 12, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment