JSFiddle - React, Tailwind, and code Playground

by NicoO

HTML

<table>
    <thead>
        <tr>
            <th>Hello</th>
            <th>I'am</th>
            <th>A</th>
            <th>Header</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>I'am</td>
            <td>like</td>
            <td>the</td>
            <td>Content</td>
        </tr>
    </tbody>
</table>

CSS

table thead tr
{
   background-color: gold;
}

table thead tr th
{
    font-weight: bold;
}