I have used ::-webkit-scrollbar
to hide scrollbars on an element in Safari/Chrome with the following CSS:
#element::-webkit-scrollbar { width:0 !important; height:0 !important }
Is there any way of accomplishing the same in Firefox?
I have used ::-webkit-scrollbar
to hide scrollbars on an element in Safari/Chrome with the following CSS:
#element::-webkit-scrollbar { width:0 !important; height:0 !important }
Is there any way of accomplishing the same in Firefox?
If you just want to hide scrollbars, better use
overflow: hidden