Skip to main content Skip to docs navigation

图片(Images)

文档和示例,用于将图片选择为响应式行为(因此图片永远不会比父图片宽),并为图片添加轻量级样式–所有这些都通过类来实现。

响应式图片

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="...">

对齐图片

使用辅助浮点类文本对齐类对齐图片。块级图片可以使用the .mx-auto margin utility class居中。

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);