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/ 

猜你喜欢

转载自www.cnblogs.com/dyy-dida/p/9103508.html