Currently, I am working on a scrollable menu that requires the scrollbar to be hidden. In Chrome, I have achieved this by using the following code:
.menu::-webkit-scrollbar {
display: none;
}
I would like to know if there is an equivalent solution for Firefox and MS Edge that will produce the same result.
Any guidance or advice is greatly appreciated.