JSFiddle - React, Tailwind, and code Playground

by paulwesterberg

HTML

<table>
<tr class="red">
<td>one  
</td>
<td>
  two
</td>
<td class="green">
  three
</td>
  
</tr>
</table>

CSS

.red {
  background-color:red;
}

.red:nth-child(1)::first-letter {
  color:orange;
}
.green::first-letter {
  color:green;
}