How to hide scrollbar in mozila firefox without stop scrolling in div.
I have used below css but i don't want to add "overflow-x:hidden" in div which i have added scrollbar. Also i can't used jQuery related plugin for Scrollbar because I have added 3 level nested menu so it's conflict with open second level menu.
margin-right: -16px;
overflow-y: scroll;
overflow-x: hidden;
Also i have used below css but it's not working in firefox.
::-webkit-scrollbar {
width: 0px; /* remove scrollbar space */
background: transparent; /* optional: just make scrollbar invisible */
}
If you have any suggestion related in CSS/jQuery for this issue then please let me know.