8
10

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.

Flex-box 子要素に指定するプロパティ

Posted at

よく使うFlexboxですが、時々、あれ?思う通りにいかないってことがあったりするので、いまいちどチートシートを参考に勉強。子要素編。

Flex-box 親要素に指定するプロパティ

参照

クリエイターボックスさんのチートシート
https://www.webcreatorbox.com/tech/css-flexbox-cheat-sheet

基本の書き方

・ Flexコンテナー(親要素)
・Flexアイテム(子要素)

.container Flexコンテナー
  .item Flexアイテム1
  .item Flexアイテム2
  .item Flexアイテム3
  .item Flexアイテム4
スクリーンショット 2017-11-30 17.02.45.png

Flexコンテナー(子要素)に指定するプロパティ

###・ order

順序を指定する(初期値0)

.container
.item1 1
.item2 2
.item3 3
.item4 4

```css
.item1
	order 3
.item2
	order 1
.item3
	order 2
スクリーンショット 2017-12-01 15.19.44.png 初期値が0なので```.item4```が一番左に、それ以降指定した順番に並ぶ。

###・ flex-grow

子要素の伸びる比率(初期値0)
親要素に余ったスペースがあった場合、指定した子要素が他の子要素に対してどれくらい伸びるかを指定する。

.item1
flex-grow 1
.item2
flex-grow 4

<img width="783" alt="スクリーンショット 2017-12-01 15.28.33.png" src="https://qiita-image-store.s3.amazonaws.com/0/174180/84d0526a-cbad-6710-7870-188bd003114c.png">

###・ ``` flex-shrink ```
>子要素の伸びる比率(初期値1)
親要素に余ったスペースがなく、すべての子要素が入り切らない場合、指定のある子要素が他の子要素に対してどれくらい縮むかを指定する。

>```css
.item1
	flex-shrink 1
.item2
	flex-shrink 2
.item3
	flex-shrink 3
.item4
	flex-shrink 4
スクリーンショット 2017-12-01 15.36.45.png

###・ flex-basis
子要素に対し width と同じように幅の値を指定できる。auto と指定した場合は子要素のコンテンツのサイズが適応される。

.item1
flex-basis 150px
.item2
flex-basis 30%
.item3
flex-basis 10%
.item4
flex-basis auto

<img width="788" alt="スクリーンショット 2017-12-01 15.40.00.png" src="https://qiita-image-store.s3.amazonaws.com/0/174180/eb9b3a5c-7f6d-3f64-807a-0c670056c59e.png">

###・ ``` align-self```
>子要素の垂直方向の揃え
親要素に空きスペースがあった場合、子要素を垂直方向のどの位置に配置するかを指定する。
親要素に指定する align-items と全く同じ機能ですが、こちらは子要素に対しての指定。この align-self での指定は、親要素に記述する align-items よりも優先される。

>・``` align-self:auto(初期値) ```
親要素の align-items の値を継承
><img width="795" alt="スクリーンショット 2017-12-01 15.50.21.png" src="https://qiita-image-store.s3.amazonaws.com/0/174180/0ba307b3-24bb-3aa7-5ea3-4d9ab20aff14.png">

>・``` align-self:flex-start ```
 親要素の開始位置から配置。上揃え。
><img width="801" alt="スクリーンショット 2017-12-01 15.54.27.png" src="https://qiita-image-store.s3.amazonaws.com/0/174180/5429fd18-e34d-547c-28a9-a3c1f849e02f.png">

>・``` align-self:flex-end ```
親要素の終点から配置。下揃え。
><img width="791" alt="スクリーンショット 2017-12-01 15.57.16.png" src="https://qiita-image-store.s3.amazonaws.com/0/174180/70b2cd73-efc9-a9ef-eaa4-d5c73db3141d.png">


>・``` align-self:flex-center ```
中央揃え
><img width="791" alt="スクリーンショット 2017-12-01 15.59.44.png" src="https://qiita-image-store.s3.amazonaws.com/0/174180/a19e5124-4eb9-5a1e-8599-75ed23499e48.png">

>・``` align-self:stretch ```
 親要素の高さ、またはコンテンツの一番多い子要素の高さに合わせて広げて配置
><img width="795" alt="スクリーンショット 2017-12-01 15.50.21.png" src="https://qiita-image-store.s3.amazonaws.com/0/174180/0ba307b3-24bb-3aa7-5ea3-4d9ab20aff14.png">

>・``` align-self:baseline ```
ベースラインで揃える
><img width="801" alt="スクリーンショット 2017-12-01 15.54.27.png" src="https://qiita-image-store.s3.amazonaws.com/0/174180/5429fd18-e34d-547c-28a9-a3c1f849e02f.png">




















8
10
1

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
8
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?