JSFiddle - React, Tailwind, and code Playground

by Joe Saad

HTML

<table border="1">
<thead>
<tr>
    <th>Name</th>
    <th>Age</th>
    <th class="unst">School</th>
    <th class="unst">City</th>
</tr>
</thead>
<tbody>
<tr>
    <td>400</td>
    <td>500</td>
    <td>600</td>
    <td>600</td>
</tr>
<tr>
    <td>100</td>
    <td>200</td>
    <td>300</td>
    <td>600</td>
</tr>
</tbody>
</table>

CSS

.unst {color:red;}