CSS Grid 생성기
CSS Grid 레이아웃을 시각적으로 구성하고 CSS 코드를 복사하세요.
Preview
1
2
3
4
5
6
CSS Output
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, auto);
column-gap: 8px;
row-gap: 8px;
justify-items: stretch;
align-items: stretch;
}자주 묻는 질문
Comments & Feedback
Comments are powered by Giscus. Sign in with GitHub to leave a comment.