I am trying to design an HTML table where the header will stay at the top of the page when AND ONLY when the user scrolls it out of view. For example, the table may be 500
Fix your issue with this
tbody { display: table-caption; height: 200px; caption-side: bottom; overflow: auto; }