scrimba
Frontend Career Path
Web dev basics
Build a Birthday GIFt Site
Aside: align-items
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: align-items
Expand for more info
index.css
run
preview
console
.container {
border: 8px solid #016a26;
height: 260px;
/*
Challenge:
Follow my orders on where we should
leave up our lab equipment!

justify-content:
start, center, end, space-around,
space-evenly, space-between

align-items:
start, center, end
*/
}

.item {
width: 50px;
height: 50px;
margin: 2px;
padding: 10px;
font-size: 50px;
border: 2px solid black;
background: linear-gradient(#14463d, #016a26);
}
Console
/index.html
-5:59