Line-height and height difference of

line-height is the line of mean high, which determines the height of the Chinese elements of this content , height is the definition of the element itself height .

  • height : represents the  row height
  • height-Line : represents the   height of each line of text occupied  

 

For example:

The first case: the use of height

result:

The second case: line-height 50px and text height 20px situation:

This time the text will be centered ( For text Why is centered issues are explained as follows: We the line-height is set to 50px , means that this line of text will occupy 50px, it is clear that the size of each word is only 20px , this time the browser the extra 30px, in the text above plus 15px,

The following text added 15px this time in the text 50px centered on the space )

 

result:

The third case: the character set and text size as the height of the full screen display at this time

 

result:

 

 

" Row Height " their name refers to a line of text height. Specifically refers to the distance between the baseline between two lines of text.

CSS中起高度作用的就是height以及line-height如果一个标签没有定义height属性(包括百分比高度),那么其最终表现的高度一定是由line-height起作用

 

 

先说一个大家都熟知的现象,有一个空的div标签,如果没有设置至少大于1像素高度height值时,该div的高度就是个0。如果该div里面打入了一个空格或是文字,则此div就会有一个高度。那么您思考过没有,为什么div里面有文字后就会有高度呢?

这是个看上去很简单的问题,是理解line-height非常重要的一个问题。可能有人会跟认为是:文字撑开的!文字占据空间,自然将div撑开。但是深入理解inline模型后发现,根本不是文字撑开了div的高度,而是line-height!要证明很简单(如下测试代码)

 CSS:

.test1{font-size:20px; line-height:0; border:1px solid #cccccc;}
.test2{font-size:0; line-height:20px; border:1px solid #cccccc;}

HTML:

<div class="test1">测试</div>
<div class="test2">测试</div>

结果:

 

结果是如此的显而易见,test1 div有文字大小,但行高为0,结果div的高度就是个0test2 div文字大小为0,但是有行高,为20像素,结果div高度就是20像素。这就说明撑开div高度的是line-height不是文字内容

到底这个line-height行高怎么就产生了高度呢?在inline box模型中,有个line boxes,这玩意是看不见的,这个玩意的工作就是包裹每行文字。一行文字一个line boxes。例如艾佛森退役5个字,只有一个line boxes;但春哥纯爷们5个字,要是竖着写,一行一个,那么一个字罩着一个line boxes,于是总计五个line boxesline boxes什么特性也没有,就高度。所以一个没有设置height属性的div的高度就是由一个一个line boxes的高度堆积而成的。

其实line boxes不是直接的生产者,属于中层干部,真正的活儿都是它的手下  inline boxes干的,这些手下就是文字啦,图片啊,<span>之类的inline属性的标签啦。line boxes只是个考察汇报人员,考察它的手下谁的实际line-height值最高,谁最高,它就要谁的值,然后向上汇报,形成高度。

 

 

网上都是这么说的,把line-height值设置为height一样大小的值可以实现单行文字的垂直居中。这句话确实是正确的,但其实也是有问题的。问题在于height,看我的表述:line-height设置为您需要的box的大小可以实现单行文字的垂直居中,差别在于我height去掉了,这个height是多余的,您不信您可以自己试试。

 

 

http://www.zhangxinxu.com/wordpress/2009/11/css%E8%A1%8C%E9%AB%98line-height%E7%9A%84%E4%B8%80%E4%BA%9B%E6%B7%B1%E5%85%A5%E7%90%86%E8%A7%A3%E5%8F%8A%E5%BA%94%E7%94%A8/

 

Guess you like

Origin www.cnblogs.com/expedition/p/11294002.html