Skip to main content
🔮 Output PredictionCS CSS Hard⚡+35 XP

CSS Grid Columns

How many equal columns does this create?

CSS
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

🔮 What is the output?