🔮 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);
}How many equal columns does this create?
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
}