2012-06-30 118 views
1

我有一個自定義列表菜單的風格,但我不能確定如何使與圖像文字:UL圖像文本對齊

enter image description here

CSS:

div#main .services{ 
    width:250px; 
} 
div#main .services ul li{ 
    list-style-image: url('../img/tick.png'); 
} 
div#main .services li{ 
    line-height:20px; 
} 

回答

4

垂直對齊可能幫助(嘗試頂部或中間值):

div#main .services li{ 
    line-height:20px; 
    vertical-align: middle; 
} 
+0

謝謝,做n不要想到VA頂部工作 –