in English
圖片
將圖像選擇為響應式行為(因此它們永遠不會變得大於其父元素)並向它們添加輕量級樣式的文檔和示例 - 全部通過類。
響應式圖像
Bootstrap 中的圖像使用.img-fluid
. max-width: 100%;
並height: auto;
應用於圖像,使其與父元素一起縮放。
<img src="..." class="img-fluid" alt="...">
SVG 圖像和 Internet Explorer
在 Internet Explorer 10 和 11 中,SVG 圖像.img-fluid
的大小不成比例。要解決此問題,請在必要時添加width: 100%;
或。.w-100
此修復不正確地調整其他圖像格式的大小,因此 Bootstrap 不會自動應用它。
圖像縮略圖
除了我們的邊界半徑實用程序之外,您還可以使用.img-thumbnail
為圖像提供 1 像素的圓形邊框外觀。
<img src="..." class="img-thumbnail" alt="...">
對齊圖像
將圖像與輔助浮點類或文本對齊類對齊。block
級圖像可以使用margin.mx-auto
實用程序類居中。
<img src="..." class="rounded float-left" alt="...">
<img src="..." class="rounded float-right" 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>