How do I vertically align text in a paragraph?

前端 未结 9 1644
余生分开走
余生分开走 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:36

    You can use line-height for that. Just set it up to the exact height of your p tag.

    p.event_desc {
      line-height:35px;
    }
    

提交回复
热议问题