CSS Grid लेआउट जेनरेटर
लाइव प्रीव्यू के साथ CSS Grid लेआउट को विज़ुअली जेनरेट करें। grid-template-columns, rows, gap, justify-items, align-items और अधिक को एडजस्ट करें — मुफ़्त और क्लाइंट-साइड।
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
column-gap: 12px;
row-gap: 12px;
justify-items: stretch;
align-items: stretch;
}
.item {
padding: 1rem;
border-radius: 8px;
font-weight: 600;
font-size: 0.9rem;
text-align: center;
min-height: 60px;
display: flex;
align-items: center;
justify-content: center;
}