📐 CSS Grid Playground

Learn and experiment with CSS Grid interactively

⚙️ Grid Controls

💡 Quick Tip

Try different presets to see how CSS Grid properties work together. Hover over grid items to see them scale!

📏 Grid Structure

🎯 Alignment

🎨 Grid Items

🎨 Live Preview

1
2
3
4
5
6
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
  justify-items: stretch;
  align-items: stretch;
}
Code copied to clipboard! ✓