<p><p>我们会遇到不同的行为跨浏览器。 Firefox 可能会以不同的方式显示文本,从而导致对预期结果产生疑问。
span { background:red; color:#fff; font-size:20px; font-family:monospace; } body { margin:10px 0; border-top:1px solid; border-bottom:1px solid; animation:change 2s linear infinite alternate; } @keyframes change { from { line-height:0.2 } to { line-height:2 } }
<span > blah_blah </span><p>随着行高动态变化,当行框展开和折叠时,内容区域保持不变。这说明了字符属性和行高的独立性。
以上是字符属性如何影响 CSS 渲染中的行高?的详细内容。更多信息请关注PHP中文网其他相关文章!