JSFiddle - React, Tailwind, and code Playground

by Msk_Satheesh

HTML

<table>
    <thead>
        <th></th>
        <th>Table header</th>
        <th>Table header</th>
        <th>Table header</th>
    </thead>
    <tr>
        <th>Table header</th>
        <td>cell</td>
        <td>cell</td>
        <td>cell</td>
    </tr>
    <tr>
        <th>Table header</th>
        <td>cell</td>
        <td>cell</td>
        <td>cell</td>
    </tr>
    <tr>
        <th>Table header</th>
        <td>cell</td>
        <td>cell</td>
        <td>cell</td>
    </tr>
</table>

CSS

table {
    border: 1px solid black;
}

th {
    background-color: gray;
}