Add scrollbar to table
css, html
Solution
with CSS it should be easy
div.scrollWrapper{
height:250px;
width:200px;
overflow:scroll;
}
<div class="scrollWrapper">
<table >
<tbody height="xxx">
<tr>......
</tbody>
</table>
</div>
Problem
I want to add a vertical and horizontal scroll bar to the table with fixed header. By using `thead` and `tbody` tags I could add scrollbar in firefox but IE does not support the `overflow:auto property` in `tbody`. IE8 does not support css expressions so can you tell me how to accomplish this?