flex屬性簡寫flex
flex
默認值等同於flex:0 1 auto
;flex:none
等同於flex:0 0 auto
;flex:auto
等同於flex:1 1 auto
;
實例一spa
<body> <div style="background-color: yellow; height: 200px;width:800px;flex:1;display: flex;"> <div style="flex:1;display: flex; background-color: red"> <div>child a</div> <div style="flex: 1;"> </div> <div style="">child b</div> </div> <div style="background-color: green">left space</div> </div> </body>
運行結果3d
結論code