Hello,
I want to know if it is possible to hide the scrollbar, while scrolling is still enabled with mouse/keyboard.
I tried to use CSS: overflow: hidden; The effect is, scrollbar disabled AND scrolling disabled.
Hello,
I want to know if it is possible to hide the scrollbar, while scrolling is still enabled with mouse/keyboard.
I tried to use CSS: overflow: hidden; The effect is, scrollbar disabled AND scrolling disabled.
Not natively, but I suppose you could implement your own scrolling mechanism by using Javscript to capture certain keystrokes and re-position the container element accordingly with CSS. It's going to be ugly, though!
There is a jQuery plugin called Scrollable that does what you want.