JSFiddle - React, Tailwind, and code Playground

by poztin

HTML

<table>
    <tr>
        <td>
            <table>
                <tr>
                    <td>
                        <div>Cell 1</div>
                    </td>
                </tr>
            </table>
        </td>
        <td>
            <div>Cell 2</div>
        </td>
    </tr>
    <tr>
        <td>
            <div>Cell 3</div>
        </td>
        <td>
            <div>Cell 4</div>
        </td>
    </tr>
</table>

CSS

html, body {
    margin:0;
    height:100%;
}

table {
    width:100%;
    height:100%;
}

td {
    background-color:salmon;
}

div {
    background-color:steelblue;
    height:100%;
}