Skip to content

Instantly share code, notes, and snippets.

@qingniao99
Forked from hoyangtsai/iPhoneX.css
Created March 14, 2019 10:01
Show Gist options
  • Save qingniao99/9dab0f4dcecf7ea5ad9825b4a3bc3017 to your computer and use it in GitHub Desktop.
Save qingniao99/9dab0f4dcecf7ea5ad9825b4a3bc3017 to your computer and use it in GitHub Desktop.
IPhone X, Xs Max and XR media query
/* 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