CSS/Flex (1) 썸네일형 리스트형 CSS 플렉스(flex) 기본 1. 부모 display: flex; // 자식들을 flex 방식으로 정렬한다. flex-direction: row; // 또는 column; row-reverse; column-reverse; // 정렬을 가로로 할 것인지 세로로 할 것인지 justify-content: flex-start; // 또는 flex-end; space-between; space-around; // direction에서 결정한 방향으로 어떻게 정렬할 것인지 (main axis) align-items: flex-start; // 또는 flex-end; center; // direction에서 결정하지 않은 방향으로 어떻게 정렬할 것인지 (cross axis) flex-wrap: nowrap; // 기본값 // 자식의 width.. 이전 1 다음