JSFiddle - React, Tailwind, and code Playground
by Mark
HTML
<table>
<thead>
<tr>
<th></th>
<th>Standard</th>
<th>Performance</th>
<th>Ultimate</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">desc</th>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
</tbody>
</table>
CSS
tbody th{
text-align:right;
}
th:nth-child(1){
font-weight: bold;
color: red;
}