How can I hide scrollbars in a web page?
Hello everybody, I was wondering if there's any way to hide both scrollbars in a DIV which would overflow.
I can achieve this in Chrome using the following:
- -webkit-scrollbar {
width: 0px; /* remove scrollbar space */ background: transparent; /* optional: just make scrollbar invisible */
}
I need to do the same in Firefox but I don't know how to achieve the same result. I'm pretty sure there must be a way but don't know how. Could you please help?
Thank you Marco
Alla svar (1)
Use the following css:
overflow-x: hidden;