scrimba
Responsive Design
CSS Grid
Spanning columns
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
Spanning columns
Expand for more info
css
style.css
run
preview
console
.grid {
display: grid;
grid-template: 100px 100px 100px / 200px 200px 200px 200px;
}

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

}

.one {
background: #B823C1;
grid-column: 1 / 2;
}

.two {
background: #FF5670;
grid-column: 1 / -2;
}
Console
index.html
-1:42