JSFiddle - React, Tailwind, and code Playground

by santhosh lanka

HTML

<div id='divElement'>
  <table border="1" align="center">
   <tr height="100%">
    <td height="100%" width="100%" valign="middle" align="center">
      We are launching soon!
    </td>
   </tr>
  </table>
  </div>

CSS

#divElement{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 300px;
    height: 300px;
    background-color: blue;
}