Skip to content

Instantly share code, notes, and snippets.

@felixzapata
Created April 1, 2015 14:44
Show Gist options
  • Save felixzapata/ccd99e2a069a2410a37c to your computer and use it in GitHub Desktop.
Save felixzapata/ccd99e2a069a2410a37c to your computer and use it in GitHub Desktop.
iPhone 6 and 6 Plus Media Queries
http://stackoverflow.com/questions/25759046/iphone-6-and-6-plus-media-queries
/* 6 */
@media only screen and (max-device-width: 667px)
and (-webkit-device-pixel-ratio: 2) {}
/* 6+ */
@media screen and (min-device-width : 414px)
and (-webkit-device-pixel-ratio: 3) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment