2
0

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 5 years have passed since last update.

BootstrapのFlex Layoutを使った、コンポーネント(2つ)を左右に配置する方法

Last updated at Posted at 2019-08-22

やりたかったこと

下図のような感じで画面の両端にコンポーネントを配置したいなあと思っていました。
image.png

解決方法

左側に配置したいコンポーネントのクラスにmr-autoを追加しました。

コード

pug
  b-container
    b-row
      b-col.mr-auto(cols="auto")
        div タイトル
      b-col(cols="auto")
        b-button.download ボタン

mr-auto

このクラスが追加された要素の右側のマージンを、右側のコンポーネントまで詰めることができます。
↓こんな感じ↓
image.png

詰まっていたところ

CSSのfloatプロパティでできると思っていたのですが、flexではできない?

備考

右側のコンポーネントのcolsだけをautoにしてもできるけど、ちゃんとやりたいならマージンを使った方がいいのかなあと思います。

参考文献

Margin utilities on columns - Layout and Grid System _ Components _ BootstrapVue
CSS3: Bootstrap 4 Beta でグリッドレイアウトの offset クラスがなくなる

2
0
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?