Skip to main content Skip to docs navigation

图形(Figures)

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

内容提要

您需要显示一段内容的时候——比如带有可选标题的图片时,请考虑使用 <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>

Sass

变量

$figure-caption-font-size:          $small-font-size;
$figure-caption-color:              $gray-600;