How do I vertically align text in a paragraph?

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

    Alternative solution which scales for multi-line text:

    Set vertical and horizontal padding to be (height - line-height) / 2

    p.event_desc {
        font: bold 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
        line-height: 14px;
        padding: 10.5px 0;
        margin: 0px;
    }
    

提交回复
热议问题