首页 > 其他 > 详细

iphone x 以后所有media值

时间:2021-05-26 21:23:09      阅读:14      评论:0      收藏:0      [点我收藏+]
//iphone X,12 Mini
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
.commodity-breathe {
bottom: 99px !important;
}
}

//iphone Xs Max
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio:3) {
.commodity-breathe {
bottom: 99px !important;
}
}

//iphone XR,11
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio:2) {
.commodity-breathe {
bottom: 99px !important;
}
}

// iPhone 12 and iPhone 12 Pro
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
.commodity-breathe {
bottom: 99px !important;
}
}

// iPhone 12 Pro Max
@media only screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
.commodity-breathe {
bottom: 99px !important;
}
}

iphone x 以后所有media值

原文:https://www.cnblogs.com/cxyqts/p/14814536.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!