Images

レスポンシブな画像とクラスの適用についての例です。

Responsive images

画像をレスポンシブにするには .img-fluid を使用します。 max-width: 100%; , height: auto; を適用すると親要素に比例するレスポンシブが実現出来ます。

PlaceholderResponsive image
<img src="..." class="img-fluid" alt="Responsive image">
SVG images and IE 10

IE10の場合, SVGに .img-fluid が効きません。IE10 に対応するには CSSハック width: 100% \9; を追加してください。
この修正は他フォーマットの画像に影響を及ぼすため, Bootstrap では標準でセットしていません。

Image thumbnails

border-radius utilities に加えて, .img-thumbnail を適用すると境界線(1ピクセル分)に丸みを持たせることができます。

A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera200x200
<img src="..." alt="..." class="img-thumbnail">

Aligning images

画像の鉢は helper float classestext alignment classes を参考にしてください。
block レベルでは画像は真ん中に配置されます。 the .mx-auto margin utility class

Placeholder200x200 Placeholder200x200
<img src="..." class="rounded float-left" alt="...">
<img src="..." class="rounded float-right" alt="...">
Placeholder200x200
<img src="..." class="rounded mx-auto d-block" alt="...">
Placeholder200x200
<div class="text-center">
  <img src="..." class="rounded" alt="...">
</div>

Picture

<picture> 要素を使用して, 複数の <source> 要素を <img> タグの為に使用する際は, .img-* クラスを <picture> タグではなく, <img> タグに適用して下さい。

<picture>
  <source srcset="..." type="image/svg+xml">
  <img src="..." class="img-fluid img-thumbnail" alt="...">
</picture>

v4.4