我有一个带有标题和正文的表格,我希望表格标题在正文上发生滚动时保持固定。
表是这样设置的:
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
</tr>
...more rows for data...
</tbody>
该表用 a 封装并具有如下 CSS:
overflow-x: hidden;
overflow-y: auto;
height: 400px;
我需要表格标题保持完全静止,但是当我添加 position: fixed; 对头或对个人而言,标题会被压扁。
最好的方法是什么?