Currently I'm using php and pear_html table to create a html table.But i have try many ways to keep the table header to fixed while scrolling the table but end up the words all is duplicated together and fixed.
Here is the CSS style I use:
for fix table header:
table.result th {
position:fixed;
display:inline-block;
}
for set the scrollbar for tbody
table.result tbody{
display:block;
height:450px;
overflow:auto;
}