scrimba
Frontend Career Path
Working with APIs
Promise Rejection
Set up 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

AboutCommentsNotes
Set up flexbox
Expand for more info
index.css
run
preview
console
body {
margin: 0;
padding: 15px;
box-sizing: border-box;
background: no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: white;
font-family: Arial, Helvetica, sans-serif;
text-shadow: 2px 2px 2px #474747;
}

main {
height: 100vh;
display: ???;
flex-direction: ???;
justify-content: ???;
}

/*
Challenge: Set up flexbox so the three elements are
evenly spread vertically on the screen (don't worry
about the horizontal alignment yet)
*/
Console
/index.html
-5:35