响应式页面html的fontsize的选择
作者:
郭子web | 来源:发表于
2017-10-17 14:00 被阅读0次html{font-size:10px}
@media screen and (max-width: 320px) {html{font-size: 10px}}
@media screen and (min-width:321px) and (max-width:375px){html{font-size:11px}}
@media screen and (min-width:376px) and (max-width:414px){html{font-size:12px}}
@media screen and (min-width:415px) and (max-width:639px){html{font-size:13px}}
@media screen and (min-width:640px) and (max-width:719px){html{font-size:20px}}
@media screen and (min-width:720px) and (max-width:749px){html{font-size:22.5px}}
@media screen and (min-width:750px) and (max-width:799px){html{font-size:23.5px}}
@media screen and (min-width:800px){html{font-size:25px}}
本文标题:响应式页面html的fontsize的选择
本文链接:https://www.haomeiwen.com/subject/etrduxtx.html
网友评论