- display: flex;
- flex-direction: row; (기본)
- flex-direction: row-reverse;
- flex-direction: column;
- flex-direction: column-reverse;
- flex-wrap: nowrap; (기본)
- flex-wrap: wrap; (공간 부족하면 다음 라인으로 넘어가게 됨)
- justify-conent: flex-start; (기본)
- justify-conent: flex-end;
- justify-conent: center;
- justify-conent: space-around;
- justify-conent: space-evenly;
- justify-conent: space-between;
- aling-items: baseline; 균등하게 해 줌
- aling-content: start
- aling-content: end;
- aling-content: center;
- aling-content: space-around;
- aling-content: space-evenly;
- aling-content: space-between;
- flex-grow: 0; (기본)
- flex-shrink: 0; (기본)
- flex-basis: auto; (기본, grow나 shrink에 맞춰서 변형)
- flex-basis: 값; (컨테이너의 width에 따라서 커질 때도, 작아질 때 변형)
마지막으로 연습을 위해
Flexbox Froggy 게임: https://flexboxfroggy.com/ 까지 하기!!