在光亮的rpivotTable
中,如何冻结标题?
我知道如何将css中的滚动条添加到数据透视表中,但是我不知道如何冻结标题。
#PivotFinal {
overflow-y: scroll;
}
答案 0 :(得分:0)
我想出了办法,在.css文件中添加了以下代码。
table.pvtTable thead th{
position: sticky;
position: -webkit-sticky;
top: 0;
z-index: 999;
}