使用更新的Flexbox API和HTML在全高度应用程序中进行Flexbox和垂直滚动

flex属性是flex-grow,flex-shrink和flex-basis属性的简写。flex属性设置弹性项目的弹性长度。

例如-

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

如果要最小高度,则使用高度:100px; 它与− min-height:100px完全相同;

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