How do I vertically align text in a paragraph?

前端 未结 9 1640
余生分开走
余生分开走 2020-12-05 04:12

I would like to know to align the text in a p element to be vertically centered.

Here are my styles:

9条回答
  •  無奈伤痛
    2020-12-05 04:39

    you could use

        line-height:35px;
    

    You really shouldnt set a height on paragraph as its not good for accessibility (what happens if the user increase text size etc)

    Instead use a Div with a hight and the p inside it with the correct line-height:

        

    text

提交回复
热议问题