css single or multiple line vertical align

后端 未结 8 2021
北荒
北荒 2020-11-28 21:04

I have a title that can have one or more lines.

How can I align the text vertically? If it was always one line I could just set the line-height to the container heig

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 21:42

    somthing like this

    HTML

    Lorem Ipsum is simply

    CSS

    div {
       display: table;
    }
    p {
       display:table-cell;
       vertical-align: middle;
    }
    

提交回复
热议问题