JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <table>
        <tr><td>A table</td></tr>
    </table>
    <ul>
        <li>A list</li>
    </ul>
</div>

CSS

.container {
    position: relative;
    width: 80%;
    height: 90%;
    background-color: #282828;
    box-shadow: inset -6px -6px 6px -2px #1d1d1d;
    color: #FFF;
    border-radius: 0 10px 0 0;
    float: left;
}

.container table {
    margin:auto;
}