【HTML】最简单的纯CSS“position:sticky;”实现table固定表头标题行
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
利用CSS:position:sticky;,就可以无需其他代码实现table固定表头标题行的效果了:
<div id="myScrollingDiv" style="border:1px solid #AAAAAA;height:370px;width:100%;overflow:auto;"> <table border="1" bordercolor="#AAAAAA" cellpadding="0" cellspacing="0" style="border-collapse: collapse;" width="100%" bgcolor="#FFFFFF" align="center" id="show_detail"> <tr align="center" height="25" bgcolor="#DEDEDE" style="position:sticky;top:0px;font-weight:bold;"> <td width="5%" nowrap><b>隐藏概念</b></td> <td width="5%" nowrap><b>恢复隐藏</b></td> <td width="5%" nowrap><b>序号</b></td> <td width="40%" nowrap><b>概念和主题</b></td> <td width="40%" nowrap><b>创建时间</b></td> <td width="5%" nowrap><b>天数</b></td> </tr> ***********其他行次信息************ </table> </div> 注意:必须将此表格放在一个固定高度的div中,并且此div的CSS必须设置为:overflow:auto;,否则无此效果。 效果: 该文章在 2023/12/13 12:09:55 编辑过 |
关键字查询
相关文章
正在查询... |