I have to hide the vertical scrollbar of an element but I have to make the "scrolling" keep working, for example using the mouse wheel.
I Followed this post:
.container {
overflow-y: scroll;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* Internet Explorer 10+ */
}
.container::-webkit-scrollbar { /* WebKit */
width: 0;
height: 0;
}
With that code, I was able to hide both scrollbars, but I'm not able to keep the horizontal one visible. Does anyone know how to do it.?