JSFiddle - React, Tailwind, and code Playground

HTML

<div class="holder">
    <div class="one"></div>
    <div class="two"></div>
    <div class="three"></div>
</div>

CSS

.holder{
    background:#f00;
}
.holder > div{
    background:#ff0;
    display:inline-block;
    vertical-align:bottom;
    width:50px;
}
.one{height:100px;}
.two{height:120px;}
.three{height:90px;}

JavaScript

<