Skip to content

Instantly share code, notes, and snippets.

@ryanhanwu
Created August 30, 2012 09:00
Show Gist options
  • Select an option

  • Save ryanhanwu/3524534 to your computer and use it in GitHub Desktop.

Select an option

Save ryanhanwu/3524534 to your computer and use it in GitHub Desktop.
ipad specific css (responsive)
@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 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment