JSFiddle - React, Tailwind, and code Playground

HTML

<table>
<tr>
<td class="back">
    <div class="innerwr"><div class="inner">This is some text</div></div>
</td>
</tr>
</table>

CSS

.back {
    background-color: #a8c0ff;
    padding: 100px;
}

.inner {
    background-color: #fff;
    text-align: center;
    padding: 50px;
    box-shadow: 0px 0px 20px #000;
}
.innerwr{
    position:absolute;
}