How can I hide Firefox scroll bars when overflow:auto?
::-webkit-scrollbar { display:none; }
I use this code but this on
I didn't find anything specific to Firefox. I have also been looking for an equivalent to ::-webkit-scrollbar { display:none }.
What I did find, however, is a generic cross-browser solution:
Some content...
The scroll bar is hidden by the parent div.
This requires you to use overflow:hidden in the parent div, but otherwise works like a charm.