Skip to main content Skip to docs navigation

图片

选择图片的响应式行为的文档和示例(它们永远不会比它们的父级更宽)并向它们添加轻量级样式 - 全部通过类实现。

响应式图片

Bootstrap 中的图片通过 .img-fluid 实现响应。 这会将 max-width: 100%;height: auto; 应用于图片,以便它随父元素宽度缩放。

PlaceholderResponsive image
<img src="..." class="img-fluid" alt="...">

缩略图

除了我们的 border-radius 实用程序,您还可以使用 .img-thumbnail 为图像提供 1 像素的圆角边框外观。

A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera200x200
<img src="..." class="img-thumbnail" alt="...">

对齐图片

将图片与 辅助浮动类文本对齐类block 级别的图片可以使用 .mx-auto 边距实用程序类居中。

Placeholder200x200 Placeholder200x200
<img src="..." class="rounded float-start" alt="...">
<img src="..." class="rounded float-end" alt="...">
Placeholder200x200
<img src="..." class="rounded mx-auto d-block" alt="...">
Placeholder200x200
<div class="text-center">
  <img src="..." class="rounded" alt="...">
</div>

Picture

如果您使用 <picture> 元素为特定 <img> 指定多个 <source> 元素,请确保将 .img-* 类添加到 而不是 <picture> 标记。

<picture>
  <source srcset="..." type="image/svg+xml">
  <img src="..." class="img-fluid img-thumbnail" alt="...">
</picture>

Sass

变量

可用于图片缩略图的变量。

$thumbnail-padding:                 .25rem;
$thumbnail-bg:                      $body-bg;
$thumbnail-border-width:            $border-width;
$thumbnail-border-color:            $gray-300;
$thumbnail-border-radius:           $border-radius;
$thumbnail-box-shadow:              $box-shadow-sm;