scrimba
Frontend Career Path
Responsive design
Build a Responsive Layout with CSS Grid
Aside: fr units
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
Aside: fr units
Expand for more info
index.css
run
preview
console
html, body {
margin: 1em;
padding: 0;
}

.grid-container {
display: grid;
gap: .5em;
grid-template-columns: 5em 5em 5em 5em;
border: 2px solid black;
}

.grid-item {
background-color: lightgreen;
padding: .2em;
text-align: center;
font-size: 2em;
color: black;
border: 1px solid #999;
}

Console
/index.html
-3:46