JSFiddle - React, Tailwind, and code Playground

by marcstober

HTML

<div id="container">
    <table width="100%">
        <tr>
            <td>Testing</td>
            <td>Testing</td>
        </tr>
    </table>
</div>
<div id="example">This is a test</div>

CSS

#example {
    padding: 5px;
    background-color: #efefef;
}
#container {
    margin: 0 -10px;
}
table {
    border-collapse: separate;
    border-spacing: 10px;
}
td, th {
    background-color: #ccf;
    padding: 5px;
}