1. 程式人生 > >設定根元素的rem值

設定根元素的rem值

 <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>