JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<table>
<!-- Very large table here -->
<tr>
<td>cell</td>
</tr>
</table>
</div>
CSS
body {font-family: sans-serif;}
html, body {height: 100%; margin: 0; padding: 0;}
div {
width:500px;
max-height: 100%;
overflow:auto;
background: steelblue;}
table {
width: 1000px;
height: 1000px;
color: #fff;}