I want a table with sticky header and horizontal scroll.
I dont want a vertical scroll inside the table. It should scroll with the page. So no set height of the table. Is this even possible?
Here is codepen of not working example: https://codepen.io/fwitkowski/pen/zYEQvvg
When I remove overflow: auto from table-container, position sticky works just fine.
.table-container {
max-width:350px;
overflow-x:auto; /* for horizontal scroll */
position: relative; /* relative to the normal flow */
border: solid 5px red /* for reference */
}