ホームページ > 記事 > ウェブフロントエンド > CSSのflex-grow属性の使い方
css flex-grow プロパティは、フレックス ボックスの拡大率を設定または取得するために使用されます。CSS 構文は flex-grow:number|initial|inherit です。要素がフレックス ボックス オブジェクトの要素ではない場合、 flex-grow プロパティは効果がありません。
CSS flex-grow 属性を使用するにはどうすればよいですか?
定義と使用法
flex-grow プロパティは、フレックス ボックスの拡張率を設定または取得するために使用されます。
注: 要素がフレックスボックス オブジェクトの要素ではない場合、flex-grow プロパティは効果がありません。
デフォルト: 0
継承: いいえ
アニメーション化可能: はい。
バージョン: CSS3
JavaScript 構文:
object.style.flexGrow="5"
CSS 構文:
flex-grow: number|initial|inherit;
プロパティ値
number 他の柔軟な項目と比較して項目が拡張される量を指定する数値。デフォルト値は 0 です。
initial このプロパティをデフォルト値に設定します。
inherit このプロパティを親要素から継承します。
#例
2 番目の要素の幅を他の要素の 3 倍にします:<!DOCTYPE html> <html> <head> <style> #main { width: 350px; height: 100px; border: 1px solid #c3c3c3; display: flex; } #main div:nth-of-type(1) {flex-grow: 1;} #main div:nth-of-type(2) {flex-grow: 3;} #main div:nth-of-type(3) {flex-grow: 1;} #main div:nth-of-type(4) {flex-grow: 1;} #main div:nth-of-type(5) {flex-grow: 1;} </style> </head> <body> <div id="main"> <div style="background-color:coral;"></div> <div style="background-color:lightblue;"></div> <div style="background-color:khaki;"></div> <div style="background-color:pink;"></div> <div style="background-color:lightgrey;"></div> </div> <p><b>注意:</b> Internet Explorer 10 及更早版本浏览器不支持 flex-grow 属性。</p> <p><b>注意:</b> Safari 6.1 及更新版本通过 -webkit-flex-grow 属性支持该属性。</p> </body> </html>効果:
#
以上がCSSのflex-grow属性の使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。