JSFiddle - React, Tailwind, and code Playground

by ChrisStanyon

HTML

<table>
<thead>
  <tr><th>Header</th></tr>
</thead>
<tbody>
  <tr><td>Body</td></tr>
</tbody>
<tfoot>
  <tr><td>Footer</td></tr>
</tfoot>
</table>

CSS

thead th { border: 1px solid green; }
tbody td { border: 1px solid red; border-bottom: none; }
tfoot td { border: 1px solid blue; border-top:none; }