跳至主要内容 跳至文档导航

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

本页内容

任何时候需要显示内容(例如带有可选标题的图像)时,请考虑使用 <figure>

使用包含的 .figure.figure-img.figure-caption 类为 HTML5 <figure><figcaption> 元素提供一些基线样式。图片中没有明确的大小,所以务必将 .img-fluid 类添加到 <img> 中以使其响应式。

Placeholder400x300
上述图像的标题。
html
<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
上述图像的标题。
html
<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>

CSS

Sass 变量

$figure-caption-font-size:          $small-font-size;
$figure-caption-color:              var(--#{$prefix}secondary-color);