CSS3:列表項的頂部對齊。CSS3:列表項的頂部對齊
查看圖片如下。我怎樣才能對齊一個藍色的箭頭來對齊每個列表的一個地位。我使用的是jQuery 1.7,它適用於iOS(iPhone)。
align top http://www.kerrydeaf.com/align.png
ul.lists{ padding:0 0 15px 0;}
ul.lists li{ line-height:18px; border-bottom:1px #bfeaf0 solid; padding:6px 12px;
background:url(../images/arrow_cyan.svg) no-repeat left; } /* no-repeat left top; */
我試圖包括JS膠印 $( 「李:最後一個」)偏移({頂:-15})。 但它沒有正常工作,因爲我不知道如何移動所有的藍色箭頭來對齊每個列表,即使這句話可能會運行到多行。
更新: 我已經試過這...
Top align http://www.kerrydeaf.com/align2.png
background:url(../images/arrow_cyan.svg) no-repeat left top;
最後更新: 它現在解決了。 background:url(../ images/arrow_cyan.svg)no-repeat left 10px;
Top align http://www.kerrydeaf.com/align3.png
嘗試你的第三個CSS行更改爲:'背景:網址(../圖像/ arrow_cyan.svg)不重複左上角; ' – mqchen