Arunjith R S
Arunjith R S

Reputation: 862

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.

Upvotes: 9

Views: 10462

Answers (1)

Prakash Mhasavekar
Prakash Mhasavekar

Reputation: 592

<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>

Upvotes: 16

Related Questions