default 값 stretch
부모에 적용하는 속성
각각의 cell 안에서의 수평, 수직 속성 결정(center, start, end, stretch)
place-items: align-items justify-items
.grid {
height: 100vh;
display: grid;
gap: 10px;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
justify-items: center;
align-items: center;
background-color: orange;
}

부모에 적용하는 속성
각각의 cell이 아닌 grid 자체를 움직인다
grid container 내에서 row, column의 배치 조정하는 속성
place-content: align-content justify-content
.grid {
height: 100vh;
display: grid;
gap: 10px;
grid-template-columns: repeat(4, 100px);
grid-template-rows: repeat(4, 100px);
justify-content: center;
align-content: center;
background-color: orange;
}
단 1fr 로 적용시 적용되지 않았다
