1. justify-content
justify-content: start;
justify-content: center;
justify-content: end;
2. align-content
align-content: start;
align-content: center;
align-content: end;
3. place-content
place-content: center end;
// 아래와 같다.
// align-content: center;
// justify-content: end;
4. justify-items
justify-items: start;
justify-items: center;
justify-items: end;
5. align-items
align-items: start;
align-items: center;
align-items: end;
6. place-items
place-items: center end;
// 아래와 같다.
// align-items: center;
// justify-items: end;
'CSS > Grid' 카테고리의 다른 글
CSS 그리드 라인 네이밍 이용하는 방법과 grid-auto-flow: dense (0) | 2020.03.09 |
---|---|
CSS 그리드 합치기 - grid-column, grid-row, span, grid-area (0) | 2020.03.09 |
CSS 반응형 그리드 - fr, repeat, minmax, max-content, min-content, auto-fit, auto-fill (0) | 2020.03.09 |
CSS 그리드 자유롭게 배치하기 - grid-template-area (0) | 2020.03.09 |
CSS 그리드(grid) 기본 (0) | 2020.03.09 |