.parent { // 부모
...
grid-template-columns: [first] 1fr [second] 1fr [third] 1fr [fourth] 1fr;
}
.child:first-child { // 자식
...
grid-column-start: second;
grid-column-end: fourth;
// 2번째 칸부터 4번째 칸 전까지를 합친다.
}
grid-auto-flow: dense;
// 부모에 추가해야 한다.
// 어떻게든 빈 공간을 채운다.
'CSS > Grid' 카테고리의 다른 글
Grid의 가로폭을 고정하는 방법 (0) | 2021.11.08 |
---|---|
CSS 개별 그리드 정렬 - justify-self, align-self, place-self (0) | 2020.03.09 |
CSS 그리드 합치기 - grid-column, grid-row, span, grid-area (0) | 2020.03.09 |
CSS 전체 그리드 정렬 - justify-content, align-content, justify-items, align-items (0) | 2020.03.09 |
CSS 반응형 그리드 - fr, repeat, minmax, max-content, min-content, auto-fit, auto-fill (0) | 2020.03.09 |