본문 바로가기
웹코딩 배우기/· CSS

flex-direction; flex 아이템 나열 방향

by 닐기 2021. 10. 1.

See the Pen flex-direction by nilgi (@nilgi) on CodePen.

 

flex-container안 item들의 방향을 설정한다.

• flex-direction: column; // 위부터 1번 시작
• flex-direction: column-reverse; // 아래부터 1번 시작
• flex-direction: row; // 왼쪽부터 1번 시작
• flex-direction: row-reverse; //오른쪽부터 1번 시작