We have long table and I want the horizontal scrollbar to always appear in the bottom of the viewport.
- We don't want to use a custom sidebar.
- I've seen this question: How can I make the horizontal scrollbar for a DIV always appear fixed on the bottom of the page? but I want the table to be long (and not to set
height
on it) and to have one main scrollbar on the page (we have more widgets). I tried:
.containerClass::-webkit-scrollbar { position: fixed; bottom: 0px;}
but it didn't work.
Any idea?