I have Html table with 12 columuns and with 15 - 30 no of rows. I need to make header and subHeader as fixed while scrolling.
i tried with overflow-y:auto; and position:fixed but content is getting moving along with header.
http://jsfiddle.net/1nteger/9LouLesp/8/
#myTable {
width: 100%;
}
#Header {
/*position:fixed;*/
}
#SubHeader {
/*position:fixed;*/
}
.content {
/*overflow-y:scroll*/
}