Using CSS, how can one allow vertical and horizontal scrolling (on overflow), but only show horizontal scrollbars (in Firefox)?
According to:
https://www.w3schools.com/howto/howto_css_hide_scrollbars.asp
One can simply use:
scrollbar-width: none
to hide scrollbars (in Firefox), but that seems to hide both vertical and horizontal scrollbars.
Reading Mozilla's developer specs:
https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
Does not yield any more details on how to accomplish this.
Is it simply impossible to use CSS to hide only vertical scrollbars, while still displaying horizontal scrollbars?