iphone4/4s/5/6/6s 的@media

@media (device-height:480px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone4/4s */
    .class{}
}


@media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone5 */
    .class{}
}

@media(min-device-width:375px)and(max-device-width:667px)and(-webkit-min-device-pixel-ratio:2){
/*iphone6*/
}


@media(min-device-width:414px)and(max-device-width:736px)and(-webkit-min-device-pixel-ratio:3){
/*iphone6plus*/
}

 分享一个最全的css @media  :   https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ 

posted @ 2018-05-29 09:45  董七  阅读(120)  评论(0编辑  收藏  举报