JSFiddle - React, Tailwind, and code Playground
HTML
<div class="center">
<div class="btn-bot">
<button>Hit Me</button>
</div>
</div>
CSS
.center{
display:table;
width:200px; height:200px;
background:#0088cc;
}
.btn-bot{
display: table-cell;
text-align: center;
vertical-align: bottom;
}