flex
flex-grow
,
flex-shrink
,
flex-basis
の一括指定property
個別のpropertyで設定するより、
flex
で一括指定するのが勧められている
https://coliss.com/articles/build-websites/operation/css/about-flex-property.html#h206
初期値は
flex: initial
flex: 0 1 auto
と同じ
省略指定
https://coliss.com/articles/build-websites/operation/css/about-flex-property.html#h205
min-height
/
min-width
系と組み合わせたときの挙動
flex-direction: row;ではみ出るときは子要素にmin-width: 0;を指定する
https://qiita.com/kazhashimoto/items/c0d7daca189dadda47cc
サンプル付き
https://gyazo.com/7f0170f4ff85ea60b10c256686409245
https://kudakurage.hatenadiary.com/entry/2016/04/01/232722
https://and-ha.com/coding/nuances-of-cssmin-height/
#2024-07-27
22:18:05