JSFiddle - React, Tailwind, and code Playground
HTML
<div class="f">
<div class="e">
</div>
<div class="e">
</div>
</div>
CSS
.f {
align-items: flex-end;
border: 1px solid #aaa;
display: flex;
justify-content: space-around;
height: 120px;
width: 400px;
}
.e {
background: #abc;
height: 40px;
margin: 8px;
width: 100px;
}