Skip to content

Instantly share code, notes, and snippets.

@afragen
Created May 21, 2013 23:45
Show Gist options
  • Save afragen/5624201 to your computer and use it in GitHub Desktop.
Save afragen/5624201 to your computer and use it in GitHub Desktop.
iOS media queries - device aspect ratio
/*Another useful media feature is device-aspect-ratio.*/
/*Note that the iPhone 5 does not have a 16:9 aspect ratio. It is in fact 40:71.*/
/*iPhone < 5:*/
@media screen and (device-aspect-ratio: 2/3) {}
/*iPhone 5:*/
@media screen and (device-aspect-ratio: 40/71) {}
/*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