I have a HTML table which is scrollable horizontally but not vertically
I want to fix the Header of the table to top as you scroll down but when i use position:sticky
on the element along with overflow-x:scroll
on the parent it doesn't stick.
here is an example fiddle of the problem https://jsfiddle.net/a53exv28/8/
overflow:auto
it will add scroll but the problem with header not sticking still persists though. – Harvey