1. justify-self
justify-self: start; // 또는 center, end
// 좌우로 정렬
2. align-self
align-self: start; // 또는 center, end
// 상하로 정렬
3. place-self
place-self: center center;
// 아래와 같다.
// align-self: center;
// justify-self: center;
'CSS > Grid' 카테고리의 다른 글
Grid의 가로폭을 고정하는 방법 (0) | 2021.11.08 |
---|---|
CSS 그리드 라인 네이밍 이용하는 방법과 grid-auto-flow: dense (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 |