弹性盒和使用更新的弹性盒 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*/ }
广告