I am trying to make a table with fixed header and a scrollable content using the bootstrap 3 table. Unfortunately the solutions I have found does not work with bootstrap or
It is easier with css
table tbody { display:block; max-height:450px; overflow-y:scroll; } table thead, table tbody tr { display:table; width:100%; table-layout:fixed; }