On my webpage here I currently have a table which has too many columns and exceeds it's holder in x direction. In CSS I have it set up so that horizontal slider is shown and people can use it to navigate left/right across the table. This is achieved using overflow-x: auto;
in CSS.
But slider looks outdated and Firefox doesn't support slider altering so far. That's why I decided that I want to disable the slider by altering overflow like this overflow-x: hidden;
. This hid the slider away, but now I can't scroll my table left/right.
Are there any easy solutions that I can use to scroll the table left/right while my scrollbar remains hidden? Usage of mouse wheel or hold & pull actions would be completely fine.