我不知道在引用 CSS 时它叫什么,但在 Excel 中,您可以冻结窗格(例如标题行),这样当您向下滚动时,您仍然可以看到您正在查看的数据的列标题。在我的网页上,我有一个类似网格的数据。有什么东西可以用来保存这些数据,或者我只需要制作两个单独的表格并努力让第一个和第二个表格对齐吗?
我也对 jQuery 插件或计划旧的 js 解决方案持开放态度。
我添加了一些代码来帮助:
<table border="1" class="usertablex" width="100%">
<thead>
<tr>
<th>Name</th>
<th>City</th>
</tr>
</thead>
<tbody style="height:20px;overflow:scroll;">
<tr class="subtext">
<td class="Dwidth175">John Silva</td>
<td class="Dwidth80" align="center" > New York</td>
</tr>
<tr class="subtext">
<td class="Dwidth175">John Thomas</td>
<td class="Dwidth80" align="center" > New York</td>
</tr>
<tr class="subtext">
<td class="Dwidth175">Xris</td>
<td class="Dwidth80" align="center" > New York</td>
</tr>
<tr class="subtext">
<td class="Dwidth175">Bob Denver</td>
<td class="Dwidth80" align="center" > New York</td>
</tr>
</tbody>
</table>