JSFiddle - React, Tailwind, and code Playground

by dynamis

HTML

<div id="outer">
    <table>
        <tr>
            <td>
                table content
            </td>
        </tr>
    </table>
</div>

CSS

#outer {
    position: absolute;
    top: 100px
    left: 50px;
}
table {
    /* display: block; */
    position: absolute;
    top: 50px;
    left: 100px;
}
table td {
    position: absolute;
    top: 10px;
}