50
32

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でcol-md-offset-2の空白が効かない。

Last updated at Posted at 2018-09-30

#Bootstrapで空白を開けたい!
調べて見ると何やらcol-md-offset-2とクラスを与えて上げるだけOKみたい…
と思いきや何故か効かない。

調べて見るとBootstrapの3と4で書き方が違うらしい。。。

##Bootstrap3とBootstrap4で書き方が違う!

Bootstrap3

これが3のバージョンでの書き方!→col-md-offset-2

<div class="row">
    <div class="col-md-6 col-md-offset-2">
        これで2カラム分の空白が左の要素にできる!
    </div>
    <div class="col-md-2">
        右に2カラムを余らせる!
    </div>
</div>

Bootstrap4

これが4のバージョンでの書き方!→offset-md-2

<div class="row">
    <div class="col-md-6 offset-md-2">
        これで2カラム分の空白が左の要素にできる!
    </div>
    <div class="col-md-2">
        右に2カラムを余らせる!
    </div>
</div>
50
32
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
50
32

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?