I want to hide the scroll bar that appears on a grid while scrolling in Firefox, however I would still be able to want to scroll freely without the scrollbar to appear visually. I tired this:
.grid {
scrollbar-width: none;
}
However, this hides the scrollbar vertically, and not horizontally. I want the vertical scroll to remain as is and hide the horizontal one. Is there any other property that would help to achieve this?