I have html table as below;
https://jsfiddle.net/supun151515/fwL8ut4k/
http://jsfiddle.net/supun151515/AC725/16/ -->jquery plugin
I want to make headers fixed and first 7 columns fixed. I have tried with many jQuery plugins even pure CSS;
tbody {
float: left; display: block; overflow-y: scroll; max-height: 100px;
}
tr {
float: left; display: block;
}
td {
float: left; display: block;
}
Nothing worked for me. Any good jQuery plugin to work with multiple rows header or pure CSS is appreciated.