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

用于选择图像以实现响应式行为(因此它们永远不会比其父级更宽)并为其添加轻量级样式的文档和示例——所有这些都通过类实现。

响应式图像

Bootstrap 中的图像使用 .img-fluid 实现响应式。这将 max-width: 100%;height: auto; 应用于图像,以便它随父级宽度缩放。

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

图像缩略图

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

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

对齐图像

使用 辅助浮动类文本对齐类 对齐图像。可以使用 .mx-auto 边距实用程序类级图像居中。

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

图片

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

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

CSS

Sass 变量

变量可用于图像缩略图。

$thumbnail-padding:                 .25rem;
$thumbnail-bg:                      var(--#{$prefix}body-bg);
$thumbnail-border-width:            var(--#{$prefix}border-width);
$thumbnail-border-color:            var(--#{$prefix}border-color);
$thumbnail-border-radius:           var(--#{$prefix}border-radius);
$thumbnail-box-shadow:              var(--#{$prefix}box-shadow-sm);