图片
选择图像响应行为的文档和示例(因此它们永远不会变得比它们的父更宽)并向它们添加轻量级样式——所有这些都是通过类。
在此页
响应图像
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="...">
对齐图像
使用辅助浮动类或文本对齐类对齐图像。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>
的 指定多个元素,请确保将类添加到而不是标签。<source>
<img>
.img-*
<img>
<picture>
<picture>
<source srcset="..." type="image/svg+xml">
<img src="..." class="img-fluid img-thumbnail" alt="...">
</picture>
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);