JSFiddle - React, Tailwind, and code Playground

by Pik_at

HTML

<table>
    <tr>
        <th>hello</th>
        <td>world</td>
    </tr>
    <tr>
        <td colspan="2">hi</td>
    </tr>
    <tr>
        <td></td>
        <td>text</td>
    </tr>
</table>

CSS

table {
    width: 200px;
}
th, td {
    border: 1px solid #000;
}
th {
    width:1px;
}