彈性盒和使用更新的彈性盒 API 與 HTML 製作全高應用中的垂直滾動


彈性屬性是 flex-grow、flex-shrink 和 flex-basis 屬性的速記。彈性屬性在彈性元素上設定彈性長度。

例如 -

#container article {
   -webkit-flex: 1 1 auto;
   overflow-y: auto;
   height: 0px; /*here the height is set to 0px*/
}

如果你需要最小高度,使用 height: 100px; 那就與 - min-height: 100px; 完全相同

#container article {
   -webkit-flex: 1 1 auto;
   overflow-y: auto;
   height: 100px; /*here the height is set to 100px*/
}

更新於: 24-6 月- 2020

488 次瀏覽

開啟你的職業

完成課程認證

開始
廣告
© . All rights reserved.