简体   繁体   中英

How to make scrollbar invisible in Firefox

I'm looking for a way to make the scrollbar invisible in Firefox. That is, you shouldn't be able to see it, but you should still be able to scroll. For other browsers, this works:

::-webkit-scrollbar {display: none;}

However, it seems that this feature has been removed from Firefox. Surely someone has found a workaround just for Firefox?

If you want to hide scroll bar, you will need the CSS

<body style="overflow:hidden;"> ...</body>

I am wondering, if scroll bar will not be available to your page, how your content is going to be read fully. By the way, this CSS works will all elements like <div></div> etc. too.

For scrolling you will need to add scroll event. Take a reference from here for scroll event handling.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM