1

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?

BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356
Ben Thielker
  • 4,104
  • 4
  • 21
  • 20

1 Answers1

0

If you just want to hide scrollbars, better use

overflow: hidden
Oriol
  • 274,082
  • 63
  • 437
  • 513
  • 1
    I want to take advantage of the scrolling behavior, but have no visible scrollbars. This is working beautifully in webkit. – Ben Thielker Mar 07 '14 at 15:58