scrimba
Learn Flexbox
Flex grow, shrink, basis - Flexbox tutorial
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

Flex grow, shrink, basis - Flexbox tutorial
AboutCommentsNotes
Flex grow, shrink, basis - Flexbox tutorial
Expand for more info
index.css
run
preview
console
.container {
border: 5px solid #ffcc5c;
display: flex;
}

.home {
flex: 1;
}

.logout {
flex: 1;
}
Console
index.html
-8:38