Bootstrap CSS 画像リファレンス

❮ 前章へ 次のリファレンス ❯

Bootstrap 画像

角丸:

Cinque Terre

円:

Cinque Terre

サムネイル:

Cinque Terre

<img> クラス

下のクラスは、画像のスタイルに使用することができます:

クラス 説明
.img-rounded 画像の角に丸みを加える(IE8では使用できない) Try it
.img-circle 画像を円形にする (IE8では使用できない) Try it
.img-thumbnail 画像をサムネイルの形にする Try it
.img-responsive 画像をレスポンシブにする (親要素の大きさに調整される) Try it

レスポンシブ画像

<img> タグに .img-responsive クラスを追加することでレスポンシブ画像を作成します。 画像は、親要素の大きさにうまく調整されます。

.img-responsive クラスは、イメージに max-width: 100%;height: autodisplay:block を適用します:

<img src="cinqueterre.jpg" class="img-responsive" alt="Cinque Terre">
Try it Yourself »

❮ 前章へ 次のリファレンス ❯