JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<table>
<thead><tr><th>header</th></tr>
<tr><th>header</th></tr></thead>
<tbody>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
<tr><td>Single row</td></tr>
</tbody>
</table>
</div>
CSS
table {width:100%; border:1px solid #000000;}
thead {background-color:#000268;color:#FFFFFF;text-align:center; position:fixed; top:0px;}
thead th { height:50px;width:1000px; text-align:center;border-width: 1px;border-style: outset;}
tbody {color:#000000;text-align:center; height:20px; overflow: scroll; margin-top:00px;}
tbody td { height:60px; border-width: 1px;border-style: outset;}