我正在尝试将图像与标题并排放置。
默认情况下,它开箱即用,执行以下操作:
<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
非常感谢,卡罗利斯