JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<thead>
<th style="width:10px;">Head1</th>
</thead>
<tbody>
<tr>
<td>Content of body</td>
</tr><tr>
<td>Content of body</td>
</tr><tr>
<td>Content of body</td></tr>
</tbody>
</table>
CSS
tbody{
overflow:auto;
max-height:40px;
display:block;
}