JSFiddle - React, Tailwind, and code Playground
by Liu David
HTML
<div class="parent">
<div class="child">
This text is valigned to bottom.
</div>
</div>
CSS
.parent{width:300px;height:50px;display:table;border:1px solid red;}
.child{display:table-cell;vertical-align:bottom;}