Source

圖片

將圖像選擇為響應式行為(因此它們永遠不會變得大於其父元素)並向它們添加輕量級樣式的文檔和示例 - 全部通過類。

響應式圖像

Bootstrap 中的圖像使用.img-fluid. max-width: 100%;height: auto;應用於圖像,使其與父元素一起縮放。

100%x250
<img src="..." class="img-fluid" alt="Responsive image">
SVG 圖像和 IE 10

在 Internet Explorer 10 中,SVG 圖像.img-fluid的大小不成比例。要解決此問題,請width: 100% \9;在必要時添加。此修復不正確地調整其他圖像格式的大小,因此 Bootstrap 不會自動應用它。

圖像縮略圖

除了我們的邊界半徑實用程序之外,您還可以使用.img-thumbnail為圖像提供 1 像素的圓形邊框外觀。

200x200
<img src="..." alt="..." class="img-thumbnail">

對齊圖像

將圖像與輔助浮點類文本對齊類對齊block級圖像可以使用margin.mx-auto實用程序類居中。

200x200 200x200
<img src="..." class="rounded float-left" alt="...">
<img src="..." class="rounded float-right" alt="...">
200x200
<img src="..." class="rounded mx-auto d-block" alt="...">
200x200
<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>