JSFiddle - React, Tailwind, and code Playground
HTML
<table class="historystyle" >
<tr>
<th style="background-image: none">name</th>
<th>location</th>
<th> job</th>
</tr>
</table>
CSS
/* your style code */
.historystyle th {
border: 1px solid black;
background: red;
cursor: pointer;
}
/* add this */
.historystyle th:first-of-type {
background: blue;
}