我正在使用以下站点的 line-height 属性:
http://www.w3schools.com/css/tryit.asp?filename=trycss_float6
div.container
{
width:100%;
margin:0px;
border:1px solid gray;
line-height:150%;
}
我试图了解 line-height 并阅读了以下内容:
在块级元素上,line-height CSS 属性指定元素内行框的最小高度。
从:
https://developer.mozilla.org/en-US/docs/CSS/line-height#Examples
但有趣的是,在上面来自 w3schools 的示例中,更改 line-height 属性会增加包含 div 元素的大小,这似乎与 mozilla 站点中的声明相矛盾。因此,如果有人能提供澄清线高的实际作用,我将不胜感激。
谢谢