Hello,
You can apply the following style to tr tags:
display:table-header-group;
to enable it. For example:
<style>
.header-table {
display:table-header-group;
}
</style>
<table border="1" style="border-collapse: collapse" width="600">
<tbody>
<tr width="600" class="header-table">
Regards.