使app端可适应不同分辨率大小
2020-11-08 本文已影响0人
酪蕊璺
css中单位同一使用rem
let html = document.documentElement,
windowWidth = html.clientWidth;
html.style.fontSize = windowWidth / 120 + 'px';
css中单位同一使用rem
let html = document.documentElement,
windowWidth = html.clientWidth;
html.style.fontSize = windowWidth / 120 + 'px';