我想用 设置字体大小em
,而不是px
。这是我的代码:
<style type="text/css">
body{
font-size: 62.5%;
}
div{
font-size: 1.2em;
}
</style>
<body>
<div>hello world</div>
</body>
我想将div
字体大小设置为 12px,但它看起来比我想象的要小,我div
用 chrome 浏览器工具禁用了样式,它看起来没有任何变化。为什么以及如何使div
字体大小为 12px?谢谢。