跳到主题内容 跳到文档导航栏

图片区

使用Bootstrap中的Figure组件显示相关图像和文本的文档和示例。

在本页面

当您需要显示一段内容(如带有可选标题的图像)时,请考虑使用<figure>

使用包括 .figure, .figure-img.figure-caption 类为HTML5<figure><figcaption>元素提供一些基础样式。 图中的图像没有显式大小,因此请确保将 .img-fluid 类添加到 <img>中以使其具有响应性。

Placeholder400x300
A caption for the above image.
<figure class="figure">
  <img src="..." class="figure-img img-fluid rounded" alt="...">
  <figcaption class="figure-caption">A caption for the above image.</figcaption>
</figure>

使用我们的 文本实用程序很容易对齐图的标题。

Placeholder400x300
A caption for the above image.
<figure class="figure">
  <img src="..." class="figure-img img-fluid rounded" alt="...">
  <figcaption class="figure-caption text-end">A caption for the above image.</figcaption>
</figure>