scrimba
Responsive Design
CSS Grid
Some similarities to flexbox
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

To see this lesson you need to be logged in. Joining Scrimba is free and gives you access to 20+ courses.Sign up
Some similarities to flexbox
AboutCommentsNotes
Some similarities to flexbox
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
-5:28