Skip to content

Instantly share code, notes, and snippets.

@afragen
Created September 21, 2012 16:41
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 afragen/3762543 to your computer and use it in GitHub Desktop.
Save afragen/3762543 to your computer and use it in GitHub Desktop.
The Events Calendar: iOS CSS media queries
/* iPad [portrait + landscape] and iPhone [portrait + landscape] */
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) {
/* code here */
}
/* iPad [portrait + landscape] */
@media only screen and (device-width: 768px) {
/* code here */
}
/* iPhone [portrait + landscape] */
@media only screen and (max-device-width: 480px) {
/* code here */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment