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

【CSS】flex-grow と flex-shrink の違いと使い方まとめ

Posted at

はじめに

flex-grow と flex-shrinkの違いを記載しています。

この記事では以下を整理します

  1. flex-grow と flex-shrink の違い
  2. デフォルト値と注意点
  3. 効かせるために必要な前提(=親要素が display: flex)

flex-grow とは?

余白(スペースが余っている時) に対して、どれくらい伸びるか を決定するプロパティです。

親要素の幅が 400px で、子要素がそれぞれ 100px の初期幅を持っていたとします。

.item1 { flex-grow: 1; }
.item2 { flex-grow: 1; }
.item3 { flex-grow: 2; }

このとき、3つの子要素の合計は 100px × 3 = 300px
親要素との間に 100px の余白があります。

flex-grow: 1 + 1 + 2 = 4 が合計比率なので、

.item1 → 100px + (1/4 × 100px) = 125px

.item2 → 100px + (1/4 × 100px) = 125px

.item3 → 100px + (2/4 × 100px) = 150px

となります。

flex-shrink とは?

親要素が狭くなったときに、どれだけ縮むか を指定するプロパティです。

親要素の幅が 200px しかなく、子要素が初期で 100px ずつあるとき。

.item1 { flex-shrink: 1; }
.item2 { flex-shrink: 1; }
.item3 { flex-shrink: 2; }

このとき、要素の合計は 200px、親要素も 300px なので100px負の余白が生まれます

1 + 1 + 2 = 4 の比率なので、

.item125px 縮小して 75px

.item225px 縮小して 75px

.item350px 縮小して50px

shrinkを 0 にすると?

.item {
  flex-shrink: 0;
}

このようにすると、その要素は 絶対に縮まなくなります。
親要素が狭いと、はみ出す原因になります。

効かせるには display: flex が必須

.parent {
  display: flex;
}

.child {
  flex-grow: 1;
}

親要素が flex でなければ、grow も shrink も機能しません。

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