Skip to content

Instantly share code, notes, and snippets.

@ahaywood
Last active December 12, 2015 10:09
Show Gist options
  • Save ahaywood/4757341 to your computer and use it in GitHub Desktop.
Save ahaywood/4757341 to your computer and use it in GitHub Desktop.
CSS: Target iPad
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
/* your css rules for ipad portrait */
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) {
/* your css rules for ipad landscape */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment