我知道浏览器上的默认字体大小是 16px。那么为什么 inline-block(12px) 的高度与字体大小相同(我在 Chrome 和 FF 中尝试过)?请帮我理解。谢谢你。
<!DOCTYPE html>
<html>
<head>
<style>
body {
font: 100% helvetica, arial, sans-serif;
line-height: 1.625;
}
#tempTest {
display: inline-block;
width: 10px;
height: 12px;
background-color: orange;
}
</style>
</head>
<body>
<p class="heading"><span id="tempTest"></span>Remember, when you were young, you shone like a sun. Shine on you crazy diamond</p>
</body>
</html>