使用css冻结数据表插件头

时间:2013-03-20 06:28:59

标签: jquery css datatables

我正在使用datatables jQuery Plugin http://www.datatables.net/来显示数据行。

https://lh5.googleusercontent.com/-AYO8f7kUw1c/UUlW8jzpisI/AAAAAAAAAC4/0fvbh1gFoko/w854-h262-p-o-k/datatable.png

我想在不使用插件功能和使用CSS

的情况下冻结此表的标题

我尝试使用Position:Fixed。 但它没有按照要求工作

1 个答案:

答案 0 :(得分:2)

这是你想要的:table header fixed

我用过的位置:固定;实现这一目标。

thead {
    background-color:#000;
    color:#c2c2c2;
    text-align:center; 
    position:fixed; top:0px;
}