我的页面上有一个使用第三方样式表的部分。 样式表使用rem值,它在使用html字体大小为62.5%的页面上使用
但是我的html标签上有一个14px的固定字体大小。
我可以以某种方式对该部分中的rem值使用不同的基础吗?
<html style="font-size: 14px;">
<body>
<div style="font-size: 1rem;">
This content should be size 14px
</div>
<div class="wordpress">
<div style="font-size: 1rem;">
This content should be size 10px
</div>
</div>
</body>
</html>