JSFiddle - React, Tailwind, and code Playground
HTML
<table style="height:500px;width:500px;table-layout:fixed">
<tr>
<td class='div'>
<span id='divElement'>
We are launching soon!!!!
</span>
</td>
<td style="background-color:red">
</td>
</tr>
</table>
CSS
#divElement{
background-color: blue;
width: 50%;
margin-left: 20%;
display: block;
}
.div{
position: relative;
background-color: yellow;
vertical-align: middle;
}