Reputation: 862
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
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