fixed column and header table code example
Example 1: table fixed header
.tableFixHead thead th { position: sticky; top: 0; }
Example 2: 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; }