Skip to content

Instantly share code, notes, and snippets.

@ivanrosolen
Created October 1, 2014 18:45
Show Gist options
  • Save ivanrosolen/673e96c6315e53758e51 to your computer and use it in GitHub Desktop.
Save ivanrosolen/673e96c6315e53758e51 to your computer and use it in GitHub Desktop.
/* iPhone < 5 */
@media screen and (device-aspect-ratio: 2/3) {
.content{
max-height: 320px;
}
}
/* 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