3*2 모양 만들고 싶으면
부모 속성에
flex-direction: column; //세로로 정렬
justify-content: space-between; //끝으로 벌리기
align-items: center; //가운데로
3*3 모양 만들고 싶으면
display: flex;
flex-wrap: wrap;
justify-content: space-between;
수직 배치 하고 싶은데
justify 쓰려면
display: flex;
flex-direction: column;
justify-content: space-between;