CSS Grid 생성기
CSS Grid 레이아웃을 시각적으로 만듭니다
1
2
3
4
5
6
7
8
9
CSS
.container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: auto;
gap: 10px;
justify-items: stretch;
align-items: stretch;
}CSS Grid 레이아웃을 시각적으로 만듭니다
.container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: auto;
gap: 10px;
justify-items: stretch;
align-items: stretch;
}