JSFiddle - React, Tailwind, and code Playground

by ansonhoyt

HTML

<table>
    <thead>
        <tr><th>First</th><th>Last</th></tr>
    </thead>
    <tbody>
        <tr><td>John</td><td>Doe</td></tr>
        <tr><td>Johnny</td><td>Appleseed</td></tr>
        <tr><td>John</td><td>Donne</td></tr>
    </tbody>
</table>

CSS

th {
    font-weight: bold;
}
td {
    border: 1px dotted black;
}