图像
文档和示例,用于将图像选择为响应行为(因此它们永远不会变得比其父级更宽)并向其添加轻量级样式 - 所有这些都通过类完成。
当前页
响应式图像
Bootstrap 中的图像使用.img-fluid
进行响应。这会将max-width: 100%;
和height: auto;
应用于图像,以便它随父宽度缩放。
<img src="..." class="img-fluid" alt="...">
图像缩略图
除了我们的 border-radius实用程序 之外,您还可以使用.img-thumbnail
为图像提供圆形 1px 边框外观。
<img src="..." class="img-thumbnail" alt="...">
对齐图像
将图像与 helper float classes 或 text 对齐类对齐。 block
级别的图像可以使用 .mx-auto
边距实用程序类。
<img src="..." class="rounded float-start" alt="...">
<img src="..." class="rounded float-end" alt="...">
<img src="..." class="rounded mx-auto d-block" alt="...">
<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);