美文网首页
移动端字体自适应

移动端字体自适应

作者: 温暖的白开水 | 来源:发表于2017-04-06 12:11 被阅读0次

@media screen and (min-width:321px) and (max-width:375px){html{font-size:10px}}

@media screen and (min-width:376px) and (max-width:414px){html{font-size:10px}}

@media screen and (min-width:415px) and (max-width:639px){html{font-size:12px}}

@media screen and (min-width:640px) and (max-width:719px){html{font-size:12px}}

@media screen and (min-width:720px){html{font-size:16px}}

@media screen and (min-width:750px) and (max-width:799px){html{font-size:23.5px}}

@media screen and (min-width:800px)and (max-width:1199px){html{font-size:25px}}

@media screen and (min-width:1200px){html{font-size:30px}}

div.box{

font-size: 2rem;

height: 10rem;

background: black;

color: white;

padding: 1rem;

}

相关文章

网友评论

      本文标题:移动端字体自适应

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