美文网首页
媒体查询 + rem

媒体查询 + rem

作者: zhangwinwin | 来源:发表于2018-08-04 09:04 被阅读0次

    媒体查询 + rem

    html{
      font-size: 10px;
    }
    @media only screen and (min-width: 320px) and (max-width: 374px){ 
      html { 
        font-size: 10px !important; 
      } 
    } 
    @media only screen and (min-width: 375px) and (max-width: 413px){ 
      html { 
        font-size: 11.719px !important; 
      } 
    } 
    @media only screen and (min-width: 414px) and (max-width: 768px){ 
      html { 
        font-size: 12.94px !important; 
      } 
    } 
    @media only screen and (min-width: 768px) and (max-width: 749px){ 
      html { 
       font-size: 20.4px !important; 
      } 
    }
    

    相关文章

      网友评论

          本文标题:媒体查询 + rem

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