css line-height 属性用于设置以文本的行高
负值是不允许的
默认值 | normal |
---|---|
继承 | yes |
版本 | CSS1 |
JavaScript 语法 | object.style.lineHeight="2" |
line-height: nornaml | *number* | *length* | *%* | inherit
值 | 描述 |
---|---|
normal | 默认。设置合理的行间距 |
number | 设置数字,此数字会与当前的字体尺寸相乘来设置行间距 |
length | 设置固定的行间距 |
% | 基于当前字体尺寸的百分比行间距 |
inherit | 规定应该从父元素继承 line-height 属性的值 |
设置 p 元素的 line-height
p.small {line-height:90%}
p.big {line-height:200%}