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

文档和示例,用于将图像选择为响应行为(因此它们永远不会变得比其父级更宽)并向其添加轻量级样式 - 所有这些都通过类完成。

响应式图像

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

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

图像缩略图

除了我们的 border-radius实用程序 之外,您还可以使用.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="...">

对齐图像

将图像与 helper float classestext 对齐类对齐。 block级别的图像可以使用 .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);