
flex-direction, flex-wrap 의 단축속성 입니다.
정의
flex-flow ?
display : flex 아이템 중 flex-direction, flex-wrap을 한번에 설정
( flex-direction option 이 첫 번째, flex-wrap option 이 두 번째 입니다. )
.container{
display:flex;
flex-flow:column wrap;
}
/* flex-direction:column; flex-wrap:wrap 과 동일 */