7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Bootstrap]グリッド内で画像を中央寄せする方法

Posted at

#結論

「img」に「class="mx-auto d-block"」を付与する。

<div class="row">
  <div class="col">
    <img class="mx-auto d-block" src="×××">
  </div>
</div>

#画面(before)

グリッドシステムで1つのrow内で真ん中に空白を作り左右のグリッド内で画像を表示させています。
グリッドに対して画像が左寄せになるので、これを中央寄せにします。

miggiyose.png

#画面(after)

migi-ok.png

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?