JSFiddle - React, Tailwind, and code Playground

by Gabriel Vazquez

HTML

<table border="0" width="400px">
  <thead>
  <tr class="first_tr">
    <td width="20%">POST ID</td>
    <td width="79%">POST TITLE</td>
  </tr>
  </thead>
  <tbody>
  <tr>
    <td>No user found</td>
  </tr>
  </tbody>
</table>

CSS

table {
  border-collapse: collapse
}

td {
  background-color: white;
  padding: 10px
}

.first_tr td {
  background-color: #f1f7f7 !important;
  border-bottom: 1px red solid
}