I have been using chrome for the longest time of my life. When I made my website and wanted to hide a scrollbar that appeared in my sidebar menu, I just used overflow: auto;
in CSS, and then .sidebar_menu::-webkit-scrollbar {display: none;}
. So there was no visible scrollbar, and I could scroll through the sidebar menu with my mouse wheel.
Yesterday, I started using Mozilla Firefox, and I realized that the scrollbar is vidible, and .sidebar_menu::-moz-scrollbar {display: none;}
didn't work. This scared me to be honest, as I cannot see a way to get out of this. I just want it to be the same in chrome and Mozilla. At least this scrollbar thing.