css学习之----媒体查询

1、iPhone X适配

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .videoTitleBox {
        margin-top: 0.6rem;
    }
}

2、iPhone Xr适配

@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
    .videoTitleBox {
        margin-top: 0.6rem;
    }
    .video_box {
        height: 28.5%;
    }
}

 

posted @ 2019-04-01 09:56  程序员冒冒  阅读(151)  评论(0编辑  收藏  举报