JSFiddle - React, Tailwind, and code Playground

by mpsingh2003

HTML

<div contenteditable="true">
    <table>
        <tr>
            <td>11</td>
            <td>22</td>
        </tr>
        <tr>
            <td>33</td>
            <td>44</td>
        </tr>
    </table>
</div>

CSS

table, td
{
    border:1px solid black;
    border-collapse:collapse;
}