There is a question similar to this Here. But it is a different on. Here I need a column and a row as header. I have a table in my project which i want to be scrollabe horizondally and vertically like This
But I need the header to be fixed when we scroll vertically. I'm not sure how to do it. Any help would be appreciated.
Here is my sample html
<div style="overflow: scroll; width: 300px;height:300px;">
<table class="myTable tablesorter" style="width:100%;" id="table">
<thead style=" font-size: 13px;height: 70px;">
<tr>
<th style="width:25px;cursor:pointer;" class="header">Title1</th>
<th style="width:25px;cursor:pointer;" class="header">Title2</th>
<th style="width:25px;cursor:pointer;" class="header">Title3</th>
<th style="width:60px;cursor:pointer;" class="header">Title4</th>
<th style="width:150px;cursor:pointer;" class="header">Title5</th>
<th style="width:60px;cursor:pointer;" class="header">Title6</th>
<th style="width:150px;cursor:pointer;" class="header">Title7</th>
<th style="width:60px;cursor:pointer;" class="header">Title8</th>
<th style="width:150px;cursor:pointer;" class="header">Title9</th>
<th style="width:60px;cursor:pointer;" class="header">Title10</th>
<th style="width:150px;cursor:pointer;" class="header">Title11</th>
</tr>
</thead>
<tbody style="font-size: 0.7em;">
<tr bgcolor="#FFFFFF">
<td>Test data</td>
<td>Test data</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data</td>
<td style="white-space:nowrap;">Test data</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>Test data</td>
<td>Test data</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data</td>
<td style="white-space:nowrap;">Test data</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>Test data</td>
<td>Test data</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data This has long text</td>
<td style="white-space:nowrap;">Test data</td>
<td style="white-space:nowrap;">Test data</td>
</tr>
</tbody>
</table>
</div>