JSFiddle - React, Tailwind, and code Playground

by ciaoben

HTML

<table>
    <thead>
        <th>ciao</th>
        <th>ciao</th>
        <th>ciao</th>
    </thead>
    <tbody>
        <tr>
            <td>ciao</td>
            <td>ciao</td>
            <td>ciao</td>
        </tr>
    </tbody>
    <tfoot>
        <th>ciao</th>
        <th>ciao</th>
        <th>ciao</th>
    </tfoot>
</table>

CSS

table, td, th {
    border: solid 1px black;
    border-collapse: collapse;
}
th {
    background-color: blue;
    color: yellow;
}
table {
    width: 400px;
}