I have a page with a table and i want no scroll in page, but I want to scroll only in the table body (which will be only on 70% of the window) so the header will always be visible. I tried like this, but doesn't work:
Html style is:
<html style="overflow: hidden">
</html>
and my table's style looks like this:
<table>
<th>
...
</th>
<tbody style="height: 50vh; overflow-y: scroll;
</tbody>
</table>