我需要在没有table thead
卷轴的情况下在表格中创建水平滚动,
table
thead
应该表现为固定位置,我不能使用position:fixed;在<thead>
元素上,因为它将自己固定到视图端口而不是父表。此示例在position:fixed
上使用table thead
,将其修复到视图端口的顶部是否有办法在没有position:fixed
的情况下执行此操作?
答案 0 :(得分:0)
尝试:
.table-fixed-header {
position: absolute;
}
position: relative;
为父母。