/*iPhone6和iPhone8*/
@media only screen
and (device-width : 375px)
and (device-height : 667px)
and (-webkit-device-pixel-ratio : 2) {
/*code*/
}
/*iPhone6 Plus 和iPhone8 Plus*/
@media only screen
and (device-width : 414px)
and (device-height : 736px)
and (-webkit-device-pixel-ratio : 3) {
/*code*/
}
/*iPhoneX*/
@media only screen
and (device-width : 375px)
and (device-height : 812px)
and (-webkit-device-pixel-ratio : 3) {
/*code*/
}
转载链接:https://blog.youkuaiyun.com/qq_41725450/article/details/91989282