rem布局代码

<script type="text/javascript">
	(function() {
     
	    var html = document.documentElement;
	    var hWidth = html.getBoundingClientRect().width;
	    html.style.fontSize = hWidth / 36 + 'px';	// 36可更改
	    console.log(html.style.fontSize);
	})();
</script>

你可能感兴趣的:(前端,html)