JSFiddle - React, Tailwind, and code Playground
HTML
<table id = "myTable">
<thead>
<tr>
<th>
Name
</th>
<th>
Address
</th>
<th>
Age
</th>
</tr>
</thead>
<tr>
<td>
Lijo
</td>
<td>
India
</td>
<td>
27
</td>
</tr>
</table>
CSS
#myTable tr td {
background-color: red;
}
#myTable tr td + td {
background-color: yellow;
}
#myTable tr td + td + td {
background-color: blue;
}