rem设置根元素的字体大小

来源:互联网 发布:祛痘消炎的药膏 知乎 编辑:程序博客网 时间:2024/06/05 10:10
<script>    var html = document.querySelector("html");    html.style.fontSize = html.offsetWidth /7.5 + "px";    addEventListener("resize",function(){        html.style.fontSize = html.offsetWidth / 7.5 + "px";    },false);</script>