Created
November 27, 2018 04:52
-
-
Save hoyangtsai/10a3d22f97d7b10288b46067c8906808 to your computer and use it in GitHub Desktop.
IPhone X, Xs Max and XR media query
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
/* iPhone X and Xs Max */ | |
@media only screen | |
and (min-device-width: 375px) | |
and (min-device-height: 812px) | |
and (-webkit-device-pixel-ratio: 3) | |
and (orientation: portrait) { | |
/* styles */ | |
} | |
/* iPhone XR */ | |
@media only screen | |
and (min-device-width: 414px) | |
and (min-device-height: 896px) | |
and (-webkit-device-pixel-ratio: 2) | |
and (orientation: portrait) { | |
/* styles */ | |
} |
awesome, working, tested on browserstack, thanks hoyangtsai
This media query is also affecting the Samsung S8/S9 version mobiles. Not working as expected.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
6666