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.
Asked
Active
Viewed 519 times
0

Daniel
- 3,541
- 3
- 33
- 46

Prasad Reddy
- 11
-
Why don't you try `overflow-y:hidden`..? – Vivek Vikranth Oct 24 '14 at 05:01
-
1http://stackoverflow.com/a/6165489/3419997 – turtle Oct 24 '14 at 05:02
-
possible duplicate of [Custom CSS Scrollbar for Firefox](http://stackoverflow.com/questions/6165472/custom-css-scrollbar-for-firefox) – Dan Hlavenka Oct 24 '14 at 05:05
1 Answers
1
You can use overflow-y: hidden
. This will hide the vertical scrollbar.

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

Aditya Deshpande
- 11
- 1