我有一個包含標題,文本和圖像的列表,有時候,當沒有足夠的文本時,我的列表開始中斷,即。該列表開始嵌套本身。當使用浮動圖像時,HTML列表不是垂直對齊的
<ul>
<li><img style="float:left"><h3>title</h3> ... some text here</li>
<li><img style="float:left"><h3>title</h3> ... some text here</li>
<li><img style="float:left"><h3>title</h3> ... some text here</li>
</ul>
我在這裏有一個例子:
http://jsfiddle.net/2z6Zn/246/
img {
float: left;
margin-right: 0.1em;
}
<ul>
<li>
<h3>photo</h3>
<img src="http://commons.cathopedia.org/w/images/commons/thumb/f/fe/Carnevale_di_Venezia.JPG/250px-Carnevale_di_Venezia.JPG" />some text next to the photo
</li>
<li>
<h3>photo</h3>
<img src="http://commons.cathopedia.org/w/images/commons/thumb/f/fe/Carnevale_di_Venezia.JPG/250px-Carnevale_di_Venezia.JPG" />some text next to the photo
</li>
<li>
<h3>photo</h3>
<img src="http://commons.cathopedia.org/w/images/commons/thumb/f/fe/Carnevale_di_Venezia.JPG/250px-Carnevale_di_Venezia.JPG" />some text next to the photo
</li>
</ul>
什麼是解決這個問題的最好方法是什麼?
@Erik讓我知道,如果這回答了你的問題...如果需要,將返工...謝謝! – kukkuz
啊,太棒了!謝謝,這會讓我走! –