in English
图片
将图像选择为响应式行为的文档和示例(因此它们永远不会大于其父元素)并向它们添加轻量级样式 - 全部通过类。
在本页面
响应式图像
Bootstrap 中的图像使用.img-fluid
. 这适用于图像max-width: 100%;
,height: auto;
以便它与父元素一起缩放。
<img src="..." class="img-fluid" alt="...">
图像缩略图
除了我们的边界半径实用程序之外,您还可以使用.img-thumbnail
为图像提供 1 像素的圆形边框外观。
<img src="..." class="img-thumbnail" alt="...">
对齐图像
将图像与辅助浮点类或文本对齐类对齐。block
级图像可以使用margin.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>
萨斯
变量
变量可用于图像缩略图。
$thumbnail-padding: .25rem;
$thumbnail-bg: $body-bg;
$thumbnail-border-width: $border-width;
$thumbnail-border-color: $gray-300;
$thumbnail-border-radius: $border-radius;
$thumbnail-box-shadow: $box-shadow-sm;