JSFiddle - React, Tailwind, and code Playground

by Pavlo

HTML

<table>
<tr><td>2</td></tr>
<tr><th>1</th></tr>
<tr><td>2</td><th>1</th></tr>
</table>

CSS

td ~ th {
  background-color: yellow;
}