table头部固定,内容滚动
可以设置两个table,th,td得设置宽度:
<table>
<thead>
<tr><th></th></tr>
</thead>
</table>
<div style="max-height:500px;overflow-y:auto">
<table>
<tbody>
<tr><td></td></tr>
</tbody>
</table>
</div>