JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td>Hello</td>
        <td>Stack</td>
        <td>Overflow</td>
    </tr>
    <tr>
        <td>some</td>
        <td>text</td>
        <td>here</td>
    </tr>
</table>

CSS

table {
  border-collapse: separate;
  background-color: green;
  border-spacing: 10px;
}
tr:first-child td {
  background-color: red;
  border-spacing: 10px;
}
td {
  padding: 10px 40px;
}