我正在写一个网页,我需要一个 html 表,以维持一个设置的大小。我需要表格顶部的标题始终保持在那里,但是我也需要表格的主体滚动,不管向表格添加了多少行。
我希望它看起来像这个 URL 中的方法2: http://www.cssplay.co.uk/menu/tablescroll.html
我尝试过这样做,但没有出现滚动条:
tbody {
height: 80em;
overflow: scroll;
}
<table border=1 id="qandatbl" align="center">
<tr>
<th class="col1">Question No</th>
<th class="col2">Option Type</th>
<th class="col1">Duration</th>
</tr>
<tbody>
<tr>
<td class='qid'></td>
<td class="options"></td>
<td class="duration"></td>
</tr>
</tbody>
</table>