JSFiddle - React, Tailwind, and code Playground

by Ccile

HTML

<table>
    <tr>
        <td></td>
    </tr>
</table>

CSS

td
{
    width : 100px;
    height : 100px;
    padding : 0;
    background : red;
    border : 1px black solid;
}

table
{
    border-collapse: collapse;
}