Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide scrollbar in Firefox and Edge

Is there any Javascript/Jquery plugins, or css tricks are available to hide scrollbar in Firefox / Edge (Native scrollbar) ? ie, i have to scroll the area but, the scrollbar should not be visible.

like image 241
Arunjith R S Avatar asked Jul 28 '16 17:07

Arunjith R S


People also ask

How do I hide the scrollbar in Firefox?

Chosen solution If you hide the scrollbar with root{ scrollbar-width: none } then this hides all the scroll bars and you can't differentiate. Styling scrollbars with userChrome.


1 Answers

<style>

   //Chrome, Safari, Opera
    body ::-webkit-scrollbar { width: 0 !important }  

    //Firefox
    body { overflow: -moz-scrollbars-none; }

    //Internet Explorer, Edge
    body { -ms-overflow-style: none; }

</style>
like image 59
Prakash Mhasavekar Avatar answered Sep 28 '22 11:09

Prakash Mhasavekar