Answers for "how to fix the header in html table"

CSS
6

table fixed header

.tableFixHead thead th { position: sticky; top: 0; }
Posted by: Guest on July-12-2020
0

table fixed header

table tbody { display:block; max-height:450px; overflow-y:scroll; }
table thead, table tbody tr { display:table; width:100%; table-layout:fixed; }
Posted by: Guest on May-19-2021

Code answers related to "how to fix the header in html table"

Browse Popular Code Answers by Language