Skip to content

Instantly share code, notes, and snippets.

@Donmclean
Created May 12, 2016 00:09
Show Gist options
  • Save Donmclean/d91c614f9a49f0141a31831b959d8e2b to your computer and use it in GitHub Desktop.
Save Donmclean/d91c614f9a49f0141a31831b959d8e2b to your computer and use it in GitHub Desktop.
iPad Specific 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 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment