JSFiddle - React, Tailwind, and code Playground

by dashk

HTML

<table>
    <tr>
        <td colspan="4"></td>
    </tr>
    <tr>
        <td colspan="2" />
        <td />
        <td rowspan="2">
            <ul>
                <li style="display: none;" />
            </ul>
        </td>
    </tr>
    <tr>
        <td />
        <td colspan="2" />
    </tr>
</table>

CSS

td {
    background-color: red;
}