How to hide scrollbars on mobile devices or emulators without affecting scrolling behavior in React app?
P粉208286791
2023-08-17 15:35:56
<p>On mobile devices, I would like to completely hide the scrollbars throughout the application, but I need the user to be able to scroll. </p>
<p>I tried using CSS scrollbar, scrollbar-thumb, scrollbar-thumb:hover and scrollbar-track to hide the scrollbar, it works on the browser but not on mobile devices. </p>
You need to use two CSS properties, one for webkit and another for Mozilla, as shown below -
Where
.invisible-scrollbar
is the class added to the related element.