Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Center single- AND multi-line li text vertically

Tags:

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 be centered vertically to the li. This works well with single-line text (by setting the line-height according to the height of the li), but not with two lines of text.

I could add "line-height:normal" to the two-line item, but I want a solution that works for all items.

How can I do this?

Example:

li { 
    list-style-type:none; 
    padding-left:40px; 
    height:36px;
    line-height:36px; 
    background:url('tick.png') no-repeat 0 50%; 
}