Skip to content

Instantly share code, notes, and snippets.

@ianaya89
Created January 6, 2015 18:59
Show Gist options
  • Save ianaya89/4c99245a12fd86084862 to your computer and use it in GitHub Desktop.
Save ianaya89/4c99245a12fd86084862 to your computer and use it in GitHub Desktop.
iOS Media Querys
/*iPhone < 5:*/
@media screen and (device-aspect-ratio: 2/3) {}
/*iPhone 5:*/
@media screen and (device-aspect-ratio: 40/71) {}
/*iPhone 6:*/
@media screen and (device-aspect-ratio: 667/375) {}
/*iPhone 6 Plus:*/
@media screen and (device-aspect-ratio: 16/9) {}
/*iPad:*/
@media screen and (device-aspect-ratio: 3/4) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment