scrimba
Frontend Career Path
Making websites interactive
Build a Mobile App
Aside: Flexbox gap
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: Flexbox gap
Expand for more info
index.css
run
preview
console
html, body {
margin: 0;
padding: 0;
background-color: #000;
}

.beatles {
display: flex;
max-width: 420px;
margin: 30px auto;
flex-wrap: wrap;
}

.beatle {
margin: 3px;
border: 2px solid white;
}
Console
/index.html
-1:18