scrimba
CSS Grid
Align an Item Vertically using align-self
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

Align an Item Vertically using align-self
AboutCommentsNotes
Align an Item Vertically using align-self
Expand for more info
index.html
run
preview
console
<style>
.item1{background:LightSkyBlue;}
.item2{background:LightSalmon;}

.item3 {
background: PaleTurquoise;
/* add your code below this line */


/* add your code above this line */
}

.item4{background:LightPink;}
.item5{background:PaleGreen;}

.container {
font-size: 40px;
min-height: 300px;
width: 100%;
background: LightGray;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
grid-gap: 10px;
}
</style>

<div class="container">
<div class="item1">1</div>
<div class="item2">2</div>
<div class="item3">3</div>
<div class="item4">4</div>
<div class="item5">5</div>
</div>
Console
index.html
-0:28