scrimba
CSS Grid
Auto-fit and minmax - CSS Grid tutorial
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Auto-fit and minmax - CSS Grid tutorial
AboutCommentsNotes
Auto-fit and minmax - CSS Grid tutorial
Expand for more info
index.css
run
preview
console
.container {
display: grid;
grid-gap: 5px;
grid-template-columns: repeat(6, 100px);
grid-template-rows: repeat(2, 100px);
}

Console
index.html
-3:44