Posts /

CSS:flex-grow

Twitter Facebook Google+
06 Dec 2018
/* Safari 6.1+ */
div:nth-of-type(1) {-webkit-flex-grow: 1;}
div:nth-of-type(2) {-webkit-flex-grow: 3;}
div:nth-of-type(3) {-webkit-flex-grow: 1;}

/* Standard syntax */
div:nth-of-type(1) {flex-grow: 1;}
div:nth-of-type(2) {flex-grow: 3;}
div:nth-of-type(3) {flex-grow: 1;}

CSS :flex-grow

이 flex-grow속성은 같은 컨테이너 안에있는 나머지 유연한 항목을 기준으로 항목이 얼마나 커질 것인지 지정합니다.

요소가 flex 항목이 아닌 경우이 flex-grow속성은 아무 효과가 없습니다.

속성

flex-grow: number|initial|inherit;


Twitter Facebook Google+