0

I am using the following code "::-webkit-scrollbar { display: none;}" , it is working in google chrome but not supported by Firefox. How to hide the vertical scrollbar in Firefox is there any alternative code.

Daniel
  • 3,541
  • 3
  • 33
  • 46

1 Answers1

1

You can use overflow-y: hidden. This will hide the vertical scrollbar.

Ref: http://www.w3schools.com/cssref/pr_pos_overflow.asp

Paul Roub
  • 36,322
  • 27
  • 84
  • 93