Is there any idea to make Scroll-bar support in Chrome and Firefox?
I really want to use CSS or CSS3 but when I search, I saw only this code :
::-webkit-scrollbar {
width: 15px;
height: 15px;
}
::-webkit-scrollbar-track-piece {
background-color: #C2D2E4;
}
::-webkit-scrollbar-thumb:vertical {
height: 30px;
background-color: #0A4C95;}
It works perfectly only on Chrome.
How can I do the same thing for Firefox?