其他分享
首页 > 其他分享> > rem

rem

作者:互联网

rem

rem是相对长度单位、相对根元素(既html元素)font-size计算值的倍数的一个css单位,fontsize=100px=1rem,也就是我们前端常说的设配单位rem

例如:
设计稿宽度:600px
移动设备:600px
设置html的 font-size= 移动设备 / 设计稿宽度 * 100 = 100px,那么 1rem = 100px

function rem(){
	//根据设备的宽设置html的字体大小
	document.documentElement.style.fontSize = document.documentElement.clientWidth/7.5 + "px";
}
rem();
//当窗口改变时,调用方法改变rem比例
window.onresize = rem;

标签:1rem,100px,html,rem,font,size
来源: https://blog.csdn.net/weixin_42619810/article/details/112636556