编辑:
参考这个(不是我的建议)
这对我有用(在 chrome 和 firefox 上)。我想这是非常糟糕的方法,但值得分享。
标记:
<table>
<thead>
<tr><th>head1</th><th>head2</th></tr>
</thead>
<tbody>
<tr><td>row1 col1</td><td>row1 col2</td></tr>
<tr><td>row2 col1</td><td>row2 col2</td></tr>
</tbody>
</table>
CSS:
table{
height:2000px;
}
thead tr {
position:fixed;
left:0;
top:0;
}
编辑(评论后)
标记:
<div id='wrapper'>
<table>
<thead>
<tr><th>head1</th><th>head2</th></tr>
</thead>
<tbody>
<tr><td>row1 col1</td><td>row1 col2</td></tr>
<tr><td>row2 col1</td><td>row2 col2</td></tr>
</tbody>
</table>
</div>
CSS:
#wrapper{
height:500;
overflow:scroll;
width:400px;
margin:0 auto;
background:Gray;
}
table{
height:2000px;
}
thead tr {
position:fixed;
top:0;
}