flex屬性

 

flex屬性簡寫flex

  • flex默認值等同於flex:0 1 auto
  • flex:none等同於flex:0 0 auto
  • flex:auto等同於flex:1 1 auto
  • flex:1等於flex:1 1 0 讓全部彈性盒模型對象的子元素都有相同的長度,忽略它們內部的內容

 

實例一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;">&nbsp;</div>
            <div style="">child b</div>
        </div>
        <div style="background-color: green">left space</div>
    </div>
</body>

運行結果3d

結論code

  1. 子元素flex:1時,會佔據全部的剩餘空間
相關文章
相關標籤/搜索