简体   繁体   中英

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.

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

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