移動(dòng)端適配rem字體大小不生效
// 獲取視窗寬度
? ? ? ? let w = document.documentElement.clientWidth || document.body.scrollWidth;
? ? ? ? console.log(w);
? ? ? ? // 獲取視窗高度
? ? ? ? let htmlDom = document.getElementsByTagName('html')[0];
? ? ? ? htmlDom.style.fontSize = w / 10 + 'px';
?這里設(shè)置好了之后p標(biāo)簽css樣式font-size:0.187rem;設(shè)置的樣式?jīng)]有生效是什么原因???
2018-11-23
let w = document.documentElement.clientWidth || document.body.scrollWidth;
改成
let w = document.documentElement.clientWidth || document.body.clientWidth?;
再試試