JSFiddle - React, Tailwind, and code Playground

by Mehmet Yener

HTML

<table>
   <th>1st th</th>
   <th>2nd th</th>
   <tbody>
       <td>1st td</td>
       <td>2nd td</td>
   </tbody>
</table>

CSS

table th{
    background-color:red;
}

table tr{
    background-color:aqua;
}
table tr:hover  {
    background-color:#fff;
}

table th:hover  {
    background-color:#FFF !important;
}