CSS Grid Generator
Entwerfen Sie CSS Grid-Layouts visuell
Container-Eigenschaften
3
3
10
1
2
3
4
5
6
7
8
9
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 10px;
}Entwerfen Sie CSS Grid-Layouts visuell
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 10px;
}