I am facing an issue in alignment of table.I want fixed header and scrollable body of table .I have align table header and body using
display:table-header-group
I have used following css property on table body
<tbody class="scrollablebody">
.scrollablebody
{
display: block; //if i remove then scroll bar is not coming..i need scroll bar
overflow-y: auto;
max-height: 200px;
}
but when i use above css on table body all alignment get disturbed. Please let me know is there way to achieve this ? thanks in advance..
[jsfiddle] (http://jsfiddle.net/saurabh07/7aj5fxmb/)