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*/ }