手记

移动端rem适配问题

tip:除了需要媒体查询宽度,必要的时候也需要查询一下高度,如有定位并且需要移动端全屏,建议使用高100vh和定位top百分比的形式(不过有背景图可能会拉伸)

@media screen and (min-width:320px) {
    html {
        font-size: 282%;
    }
}
@media screen and (min-width:350px) {
    html {
        font-size: 342%;
    }
}
@media screen and (min-width:360px) {
    html {
        font-size: 351.56%;
    }
}
@media screen and (min-width:375px) {
    html {
        font-size: 366.2%;
    }
}
@media screen and (min-width:384px) {
    html {
        font-size: 375%;
    }
}
@media screen and (min-width:390px) {
    html {
        font-size: 380.85%;
    }
}
@media screen and (min-width:393px) {
    /* 小米NOTE */
    html {
        font-size: 383.79%;
    }
}
@media screen and (min-width:410px) {
    html {
        font-size: 400%;
    }
}
@media screen and (min-width:432px) {
    /* 魅族3 */
    html {
        font-size: 421.875%;
    }
}
@media screen and (min-width:480px) {
    html {
        font-size: 469%;
    }
}
@media screen and (min-width:540px) {
    html {
        font-size: 527.34%;
    }
}
@media screen and (min-width:640px) {
    html {
        font-size: 625%;
    }
}
@media screen and (min-width:720px) {
    html {
        font-size: 703.125%;
    }
}
/* ipad */
@media screen and (min-width:768px) {
    html {
        font-size: 600.125%;
    }
}
/* ipadPro */
@media screen and (min-width:1024px) {
    html {
        font-size: 703.125%;
    }
}


0人推荐
随时随地看视频
慕课网APP