1

I have a table with <thead> that I want to force still on scroll while retaining formatting, alignment and structure. I tried:

position:absolute 

but that skews and overlaps everything.

http://jsfiddle.net/hyo90obL/

Mr Lister
  • 45,515
  • 15
  • 108
  • 150
danywigglebutt
  • 238
  • 1
  • 17
  • Possible duplicate of [HTML table with fixed headers?](http://stackoverflow.com/questions/673153/html-table-with-fixed-headers) – Mr Lister Mar 08 '16 at 15:28

1 Answers1

0
table{
  margin-top:55px
}
.hellomylady{
  position: fixed;
    top: 0;
    background: #fff;
}

fiddle link

Gaurav Aggarwal
  • 9,809
  • 6
  • 36
  • 74