-
-
Save qingniao99/9dab0f4dcecf7ea5ad9825b4a3bc3017 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 */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment