JSFiddle - React, Tailwind, and code Playground
by core972
HTML
<div id="parent">
<div id="1" class="child"></div>
<div id="2" class="child"></div>
<div id="3" class="child"></div>
</div>
CSS
#parent{
height:600px;
width:200px;
}
.child{
height:100px;
margin-top:auto;
}