Posts by Fabricio Jordan • 1 point
1 post
-
-1
votes4
answers11127
viewsA: How to hide the Scrollbar, but without deactivating it
An alternative using CSS only: ::-webkit-scrollbar { display: none; } If you only want to use in a specific div/class: .scroll-hidden::-webkit-scrollbar { display: none; }…