JSFiddle - React, Tailwind, and code Playground

by David Thomas

HTML

<table>
    <tbody>
        <tr>
            <td>Row one, column one</td>
            <td>Row one, column two</td>
        </tr>
        <tr>
            <td>Row two, column one</td>
            <td>Row two, column two</td>
        </tr>
        <tr>
            <td>Row three, column one</td>
            <td>Row three, column two</td>
        </tr>
    </tbody>
</table>

CSS

td {
    padding: 0.5em 1em;
    border: 1px solid #ccc;
}