【发布时间】:2014-05-28 15:32:14
【问题描述】:
我在元素中有 4 张图片,元素中有标题。
每个图像都显示在彼此下方,如下所示:
图片
标题
图片
标题
图片
标题
图片
标题
我希望图像看起来像:
图像图像图像图像
标题 标题 标题 标题
我的 HTML:
<div id="earlylife_images">
<figure>
<img src="images/early/moore01.jpg" alt="Roger Moore Teenage" width="150" height="150">
<figcaption>A young Roger Moore</figcaption>
</figure>
<figure>
<img src="images/early/moore02.jpg" alt="Roger Moore 30's" width="150" height="150">
<figcaption>Roger Moore in his 30's</figcaption>
</figure>
<figure>
<img src="images/early/moore03.jpg" alt="Roger Moore as James Bond" width="150" height="150">
<figcaption>Roger Moore as James Bond</figcaption>
</figure>
<figure>
<img src="images/early/moore04.jpg" alt="Roger Moore Recent" width="150" height="150">
<figcaption>Roger Moore in more recent years</figcaption>
</figure>
</div>
【问题讨论】: