フレックス
レスポンシブ フレックスボックス ユーティリティの完全なスイートを使用して、グリッド列、ナビゲーション、コンポーネントなどのレイアウト、配置、サイズ変更をすばやく管理します。より複雑な実装では、カスタム CSS が必要になる場合があります。
ユーティリティを適用してフレックスdisplay
ボックス コンテナーを作成し、直接の子要素をフレックス アイテムに変換します。フレックス コンテナーとアイテムは、追加のフレックス プロパティを使用してさらに変更できます。
<div class="d-flex p-2">I'm a flexbox container!</div>
<div class="d-inline-flex p-2">I'm an inline flexbox container!</div>
とにはレスポンシブ バリエーションも.d-flex
あり.d-inline-flex
ます。
.d-flex
.d-inline-flex
.d-sm-flex
.d-sm-inline-flex
.d-md-flex
.d-md-inline-flex
.d-lg-flex
.d-lg-inline-flex
.d-xl-flex
.d-xl-inline-flex
方向ユーティリティを使用して、フレックス コンテナー内のフレックス アイテムの方向を設定します。ほとんどの場合、ブラウザのデフォルトは であるため、ここでは水平方向のクラスを省略できますrow
。ただし、この値を明示的に設定する必要がある状況に遭遇する場合があります (レスポンシブ レイアウトなど)。
.flex-row
水平方向 (ブラウザーのデフォルト) を設定するか.flex-row-reverse
、反対側から水平方向を開始するために使用します。
<div class="d-flex flex-row">
<div class="p-2">Flex item 1</div>
<div class="p-2">Flex item 2</div>
<div class="p-2">Flex item 3</div>
</div>
<div class="d-flex flex-row-reverse">
<div class="p-2">Flex item 1</div>
<div class="p-2">Flex item 2</div>
<div class="p-2">Flex item 3</div>
</div>
.flex-column
垂直方向を設定する場合、または.flex-column-reverse
反対側から垂直方向を開始する場合に使用します。
<div class="d-flex flex-column">
<div class="p-2">Flex item 1</div>
<div class="p-2">Flex item 2</div>
<div class="p-2">Flex item 3</div>
</div>
<div class="d-flex flex-column-reverse">
<div class="p-2">Flex item 1</div>
<div class="p-2">Flex item 2</div>
<div class="p-2">Flex item 3</div>
</div>
にはレスポンシブ バリエーションも存在しflex-direction
ます。
.flex-row
.flex-row-reverse
.flex-column
.flex-column-reverse
.flex-sm-row
.flex-sm-row-reverse
.flex-sm-column
.flex-sm-column-reverse
.flex-md-row
.flex-md-row-reverse
.flex-md-column
.flex-md-column-reverse
.flex-lg-row
.flex-lg-row-reverse
.flex-lg-column
.flex-lg-column-reverse
.flex-xl-row
.flex-xl-row-reverse
.flex-xl-column
.flex-xl-column-reverse
フレックスボックス コンテナーでユーティリティを使用justify-content
して、主軸 (開始する x 軸、開始する場合は y 軸flex-direction: column
) 上のフレックス アイテムの配置を変更します。start
(ブラウザのデフォルト)、end
、center
、between
、またはから選択しますaround
。
にはレスポンシブ バリエーションも存在しjustify-content
ます。
.justify-content-start
.justify-content-end
.justify-content-center
.justify-content-between
.justify-content-around
.justify-content-sm-start
.justify-content-sm-end
.justify-content-sm-center
.justify-content-sm-between
.justify-content-sm-around
.justify-content-md-start
.justify-content-md-end
.justify-content-md-center
.justify-content-md-between
.justify-content-md-around
.justify-content-lg-start
.justify-content-lg-end
.justify-content-lg-center
.justify-content-lg-between
.justify-content-lg-around
.justify-content-xl-start
.justify-content-xl-end
.justify-content-xl-center
.justify-content-xl-between
.justify-content-xl-around
align-items
flexbox コンテナーでユーティリティを使用して、フレックス アイテムの交差軸 (y 軸が開始点、x 軸が の場合) の配置を変更しますflex-direction: column
。start
、end
、center
、baseline
、またはstretch
(ブラウザのデフォルト)から選択します。
にはレスポンシブ バリエーションも存在しalign-items
ます。
.align-items-start
.align-items-end
.align-items-center
.align-items-baseline
.align-items-stretch
.align-items-sm-start
.align-items-sm-end
.align-items-sm-center
.align-items-sm-baseline
.align-items-sm-stretch
.align-items-md-start
.align-items-md-end
.align-items-md-center
.align-items-md-baseline
.align-items-md-stretch
.align-items-lg-start
.align-items-lg-end
.align-items-lg-center
.align-items-lg-baseline
.align-items-lg-stretch
.align-items-xl-start
.align-items-xl-end
.align-items-xl-center
.align-items-xl-baseline
.align-items-xl-stretch
align-self
フレックスボックス アイテムのユーティリティを使用して、横軸 (y 軸が開始点、x 軸が の場合flex-direction: column
) での配置を個別に変更します。、、、、または(ブラウザのデフォルト)と同じオプションから選択しalign-items
ます。start
end
center
baseline
stretch
にはレスポンシブ バリエーションも存在しalign-self
ます。
.align-self-start
.align-self-end
.align-self-center
.align-self-baseline
.align-self-stretch
.align-self-sm-start
.align-self-sm-end
.align-self-sm-center
.align-self-sm-baseline
.align-self-sm-stretch
.align-self-md-start
.align-self-md-end
.align-self-md-center
.align-self-md-baseline
.align-self-md-stretch
.align-self-lg-start
.align-self-lg-end
.align-self-lg-center
.align-self-lg-baseline
.align-self-lg-stretch
.align-self-xl-start
.align-self-xl-end
.align-self-xl-center
.align-self-xl-baseline
.align-self-xl-stretch
フレックス アラインメントと自動マージンを組み合わせると、Flexbox は非常に素晴らしいことを行うことができます。以下に示すのは、自動マージンを介してフレックス項目を制御する 3 つの例です。デフォルト (自動マージンなし)、2 つの項目を右に.mr-auto
押す ( )、および 2 つの項目を左に押す ( .ml-auto
)。
残念ながら、IE10 と IE11 は、親がデフォルト以外のjustify-content
値を持つフレックス アイテムの自動マージンを適切にサポートしていません。 詳細については、この StackOverflow の回答を参照してください。
<div class="d-flex">
<div class="p-2">Flex item</div>
<div class="p-2">Flex item</div>
<div class="p-2">Flex item</div>
</div>
<div class="d-flex">
<div class="mr-auto p-2">Flex item</div>
<div class="p-2">Flex item</div>
<div class="p-2">Flex item</div>
</div>
<div class="d-flex">
<div class="p-2">Flex item</div>
<div class="p-2">Flex item</div>
<div class="ml-auto p-2">Flex item</div>
</div>
align-items
、flex-direction: column
、margin-top: auto
またはを組み合わせて、1 つのフレックス アイテムをコンテナーの上部または下部に垂直に移動しmargin-bottom: auto
ます。
<div class="d-flex align-items-start flex-column" style="height: 200px;">
<div class="mb-auto p-2">Flex item</div>
<div class="p-2">Flex item</div>
<div class="p-2">Flex item</div>
</div>
<div class="d-flex align-items-end flex-column" style="height: 200px;">
<div class="p-2">Flex item</div>
<div class="p-2">Flex item</div>
<div class="mt-auto p-2">Flex item</div>
</div>
フレックス コンテナー内でフレックス アイテムをラップする方法を変更します。でラッピングをまったく行わない (ブラウザーのデフォルト)、.flex-nowrap
でラッピングする.flex-wrap
、または でラッピングする逆から選択します.flex-wrap-reverse
。
にはレスポンシブ バリエーションも存在しflex-wrap
ます。
.flex-nowrap
.flex-wrap
.flex-wrap-reverse
.flex-sm-nowrap
.flex-sm-wrap
.flex-sm-wrap-reverse
.flex-md-nowrap
.flex-md-wrap
.flex-md-wrap-reverse
.flex-lg-nowrap
.flex-lg-wrap
.flex-lg-wrap-reverse
.flex-xl-nowrap
.flex-xl-wrap
.flex-xl-wrap-reverse
いくつかのユーティリティを使用して、特定のフレックス アイテムの視覚的な順序を変更します。order
アイテムを最初または最後にするオプションと、DOM 順序を使用するためのリセットのみを提供します。order
任意の整数値 (例: ) を受け取るので5
、必要な追加の値がある場合はカスタム CSS を追加します。
<div class="d-flex flex-nowrap">
<div class="order-3 p-2">First flex item</div>
<div class="order-2 p-2">Second flex item</div>
<div class="order-1 p-2">Third flex item</div>
</div>
にはレスポンシブ バリエーションも存在しorder
ます。
.order-0
.order-1
.order-2
.order-3
.order-4
.order-5
.order-6
.order-7
.order-8
.order-9
.order-10
.order-11
.order-12
.order-sm-0
.order-sm-1
.order-sm-2
.order-sm-3
.order-sm-4
.order-sm-5
.order-sm-6
.order-sm-7
.order-sm-8
.order-sm-9
.order-sm-10
.order-sm-11
.order-sm-12
.order-md-0
.order-md-1
.order-md-2
.order-md-3
.order-md-4
.order-md-5
.order-md-6
.order-md-7
.order-md-8
.order-md-9
.order-md-10
.order-md-11
.order-md-12
.order-lg-0
.order-lg-1
.order-lg-2
.order-lg-3
.order-lg-4
.order-lg-5
.order-lg-6
.order-lg-7
.order-lg-8
.order-lg-9
.order-lg-10
.order-lg-11
.order-lg-12
.order-xl-0
.order-xl-1
.order-xl-2
.order-xl-3
.order-xl-4
.order-xl-5
.order-xl-6
.order-xl-7
.order-xl-8
.order-xl-9
.order-xl-10
.order-xl-11
.order-xl-12
align-content
フレックスボックス コンテナーでユーティリティを使用して、フレックス アイテムを交差軸上で整列させます。start
(ブラウザのデフォルト)、end
、center
、between
、around
またはから選択しますstretch
。これらのユーティリティを実証するためflex-wrap: wrap
に、フレックス アイテムの数を強制して増やしました。
注意喚起!このプロパティは、単一行のフレックス アイテムには影響しません。
にはレスポンシブ バリエーションも存在しalign-content
ます。
.align-content-start
.align-content-end
.align-content-center
.align-content-around
.align-content-stretch
.align-content-sm-start
.align-content-sm-end
.align-content-sm-center
.align-content-sm-around
.align-content-sm-stretch
.align-content-md-start
.align-content-md-end
.align-content-md-center
.align-content-md-around
.align-content-md-stretch
.align-content-lg-start
.align-content-lg-end
.align-content-lg-center
.align-content-lg-around
.align-content-lg-stretch
.align-content-xl-start
.align-content-xl-end
.align-content-xl-center
.align-content-xl-around
.align-content-xl-stretch