Flexbox 레이아웃 기존에 학습했던 레이아웃 방법들 1. display : block / inline / table 2. position : static, relative, absolute, fixed ... FlexibleBox 레이아웃 float 나 position 을 사용하지 않고도 반응형 레이아웃 을 손쉽게 작성할수 있다. FlexibleBox 사용하기 1. 우선 flex container 정의 2. container 안에 flex item 들 나열 Flex container 의 property 들 flex-direction : column, column-reverse, row, row-reverse flex-wrap : > nowrap(디폴트), wrap, wrap-reverse flex-f..