我想把圖像並排與標題。2列圖像列表(圖和figcaption)
,默認情況下做了以下工作開箱:
<figure>
<img src="1.jpg" width=320 height=240 alt="Image 1">
<img src="2.jpg" width=320 height=240 alt="Image 2">
<img src="3.jpg" width=320 height=240 alt="Image 3">
<img src="4.jpg" width=320 height=240 alt="Image 4">
</figure>
我並排取決於如果我的寬度允許它獲得的圖像側的名單。我得到我想要的。這樣圖像的2列:
Image 1 Image 2
Image 3 Image 4
現在,如果我添加figcaption如下:
<figure>
<img src="1.jpg" width=320 height=240 alt="Image 1">
<figcaption>caption 1</figcaption>
<img src="2.jpg" width=320 height=240 alt="Image 2">
<figcaption>caption 2</figcaption>
<img src="3.jpg" width=320 height=240 alt="Image 3">
<figcaption>caption 3</figcaption>
<img src="4.jpg" width=320 height=240 alt="Image 4">
<figcaption>capton 4</figcaption>
</figure>
一切看起來是這樣的:
Image 1
caption 1
Image 2
caption 2
Image 3
caption 3
Image 4
caption 4
我也用列表和層次玩耍, CSS。
問題是我該如何進行以下操作?
Image 1 Image 2
caption 1 caption 2
image 3 Image 4
caption 3 caption 4
非常感謝, Karolis
HTML5醫生說只有1 figcaption允許的人物中:http://html5doctor.com/the-figure-figcaption-elements/ – cimmanon
好,謝謝,但我的目標是最後一點,如何讓2與
使用「div」:http://jsfiddle.net/ZksyN/ – Anujith