JSFiddle - React, Tailwind, and code Playground
by Andrea Biagi
HTML
<div id="parent">
<div id="child">Content here</div>
</div>
CSS
#parent {display: table; height:100px; background-color:red;}
#child {
display: table-cell;
vertical-align: middle;
}