그리드 아이템 정렬 속성
inline 수평 축 정렬(좌우방향)
- justify-items: center; (수평축 가운데, 모눈종이 내부)
- justify-content: center; (수평축 가운데, 모눈종이 자체)
block 수직축 정렬(위아래방향)
- align-items: start; (수직축 가운데, 모눈종이 내부)
- align-content:center;(수직축 가운데, 모눈종이 자체)
패키징정렬은 content
아이템 정렬은 items
항목별 정렬은 self
justify-items : center;
justify-items : end;
justify-items : stretch;
justify-items: center; (수평축 가운데)
align-items: start; (수직축 위)
justify-items: center; (수평축 가운데)
align-items: center; (수직축 가운데)
justify-items: center; (수평축 가운데, 모눈종이 내부)
justify-content: center; (수평축 가운데, 모눈종이 자체)
align-items: start; (수직축 위, 모눈종이 내부)
justify-items: center; (수평축 가운데, 모눈종이 내부)
justify-content: center; (수평축 가운데, 모눈종이 자체)
align-items: start; (수직축 가운데, 모눈종이 내부)
align-content:center;(수직축 가운데, 모눈종이 자체)
부모의 여백에 따라서 그리드정렬이 바뀐다.
여백이 얼만큼 있느냐에 따라, 그리드 박스의 크기에 따라 정렬이 결정된다.
grid-template-areas:
areas에 따라 하나의 영역이 되어 적용된다.
'2021 Newlecture > HTML & CSS' 카테고리의 다른 글
입력 폼 태그/ 태그집중화 / 텍스트의 수직정렬,수평정렬/flex박스에 속하는 인라인태그 (0) | 2021.03.31 |
---|---|
특정태그만 선택/ 콘텐트가리기 / 콘텐트를 이미지로 대체/코드 집중화 (0) | 2021.03.30 |
수평목록적용 / display: none/ background / hover (0) | 2021.03.29 |
Grid안에서 Grid layout (0) | 2021.03.26 |
minmax / auto-fill / auto-fit / gap / (0) | 2021.03.23 |
grid-row / grid-column / auto 와 1fr차이/ @media screen (0) | 2021.03.22 |
grid / repeat / grid-column (0) | 2021.03.19 |
Grid Line만드는 방법#3 : 영역이름부여 (0) | 2021.03.19 |