JSFiddle - React, Tailwind, and code Playground
HTML
<div class="background">
<div class="TileText">MyText - Another long, long, long text</div>
</div>
CSS
.background {
background-color:#000;
height: 400px;
width: 100%;
display: table
}
.TileText{
max-width: 200px;
display: table-cell;
vertical-align: middle;
color: #fff;
clear: both;
padding-left: 10px;
}