有人知道吗
解决方法
短版本:line-height:150%是静态的,line-height:1.5是动态的.对继承元素的影响更为明显.一个例子:
<div style="font-size: 12px"> <span style="font-size: 24px">test</span> </div>
这个CSS
div { line-height: 150%; } /* Computed line-height: 18px (150% * 12px) */ span { } /* Computed line-height: 18px (inherited directly) */
与此相反:
div { line-height: 1.5 } /* Computed line-height: 18px (1.5 * 12px) */ span { } /* Computed line-height: 36px (1.5 * 24px) */
您可以在CSS2 specs page阅读更多