I want to custom-style a scrollbar with CSS.
I use this WebKit CSS code, which works well for Safari and Chrome:
::-webkit-scrollbar {
width: 15px;
height: 15px;
}
::-webkit-scrollbar-track-piece {
background-color: #C2D2E4;
}
::-webkit-scrollbar-thumb:vertical {
height: 30px;
background-color: #0A4C95;
}
How can I do the same thing for Firefox?
(I know I can easily do it using jQuery, but I would prefer to do it with CSS if it's doable.)
Would be grateful for somebody's expert advice!