JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<th>
hi
</th>
<th>
bye
</th>
<th>
ok
</th>
</table>
CSS
table th
{
border:1px solid;
width:30px;
}
table th:nth-child(odd)
{
background-color:yellow;
}
table th:nth-child(even)
{
background-color:red;
}