跳到主要内容 跳到文档导航
Check
in English

图片

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

响应式图像

Bootstrap 中的图像使用.img-fluid. 这适用于图像max-width: 100%;height: auto;以便它随父宽度缩放。

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

图像缩略图

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

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

对齐图像

将图像与辅助浮点类文本对齐类对齐block级图像可以使用margin.mx-auto实用程序类居中。

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

图片

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

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

萨斯

变量

变量可用于图像缩略图。

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