移动端设置

1 <script type="text/javascript">
2 fn();
3 function fn() {
4     var w = document.documentElement.clientWidth / 3.75;
5     var html = document.querySelector("html");
6     html.style.fontSize = w + "px";
7 }
8 window.onresize = fn;
9 </script>

设置html字体为625%,即100px,body 修正为16px,这样 0.1rem 就是 10px,而body的字体仍然是默认大小,不影响未设置大小的元素的默认字体的大小!

移动端字体自适应设置参考图

 

posted @ 2019-01-22 15:21  花儿香  阅读(74)  评论(0)    收藏  举报