Javascript – Make scrollbar invisible in mobile browsers
I want to hide the scrollbar, without disabling scrolling I used this rule in CSS: ::-webkit-scrollbar { display: none; } I've tried also with : ::-webkit-scrollbar { width: 0; } From PC, it works correctly, on mobile, regardless of the…