Created
April 1, 2015 14:44
-
-
Save felixzapata/ccd99e2a069a2410a37c to your computer and use it in GitHub Desktop.
iPhone 6 and 6 Plus Media Queries
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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