Center single- AND multi-line li text vertically

后端 未结 2 748
南笙
南笙 2021-01-31 05:36

I have an unordered list with a background-image set. All list-items have the same height, the background-image is positioned left center.

The text of each item should b

2条回答
  •  清歌不尽
    2021-01-31 06:12

    li {
        height:200px; 
        line-height:200px;
        border:1px solid red;
    }
    li span {
        vertical-align:middle; 
        display:inline-block; 
        line-height:1.2;
    }
    
    
  • two
    lines
  • It should work.

    EDIT : updated to see changes

提交回复
热议问题