我有一个包含两个标题行Demo的表。
<thead>
<tr>
<th colspan="4"><big>Variable Details</big></th>
</tr>
<tr>
<th>Variable Name</th>
<th>Starting Value</th>
<th>Default Value</th>
<th>Description</th>
</tr>
</thead>
我想冻结顶部两个标题行(表的标题部分)。任何想法。
2条答案
按热度按时间lyr7nygr1#
在引用了许多网站链接后,我能够使用纯CSS.Updated fix修复两个标题行。
CSS:
pokxtpni2#
更改CSS属性位置为"sticky",以获得一个粘性表头。见下文。
CSS:
thead { position: sticky; top: 0px; z-index: 10; }
注意:您可能需要根据其他CSS属性调整z轴。