美文网首页
我的rem适配方案

我的rem适配方案

作者: 点_ba7a | 来源:发表于2017-08-07 10:54 被阅读0次

    1. 简单入门的rem适配方案,纯CSS实现

    html{

    font-size:20px;

    }

    @mediaonlyscreenand(min-width:401px) {

    html{

    font-size:21.33333333px!important;

    }

    }

    @mediaonlyscreenand(min-width:414px) {

    html{

    font-size:22.08px!important;

    }

    }

    @mediaonlyscreenand(min-width:480px) {

    html{

    font-size:25.6px!important;

    }

    }

    body{

    font-size:16px;

    }

    相关文章

      网友评论

          本文标题:我的rem适配方案

          本文链接:https://www.haomeiwen.com/subject/nlvolxtx.html