How does line-height vertically center text?

前端 未结 5 542
别跟我提以往
别跟我提以往 2021-02-07 07:51

I\'m trying to understand why the line-height CSS property places the text vertically in the middle of this button:

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-07 08:51

    The text you generate is inside its own line box and vertical-align is used for placement inside that box. However, that box has nothing to do with the div you have wrapped around the text. You set the height of the div to 58px but that does not affect the height of the line text box. That is why you need line-height to match the height of the div.

提交回复
热议问题