scrimba
Responsive Design
CSS Grid
The grid-gap property
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

AboutCommentsNotes
The grid-gap property
Expand for more info
css
style.css
run
preview
console
.grid {
display: grid;
grid-template-columns: 150px 150px 200px;
}

.grid-item {
background: #B823C1;
color: white;
padding: 1em 2em;
border: 2px solid purple;
display: flex;
align-items: center;
justify-content: center;
}

.big {
padding: 3em 2em;
background: #FF5670;
}
Console
index.html
-2:32