JSFiddle - React, Tailwind, and code Playground

by Softlink

HTML

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

CSS

table{
    width: 80%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 20px;
}

td{
    border: 1px solid #ccc;
    width: 50%;
    height: 200px;
    border-radius: 10px;
}