Firefox won't recognise overflow scrollbar properties
Hi
I have created an overflow css rule, within which I have changed the
appearance of the scrollbar. IE reads this with no problems however Firefox
doesn't and just shows the standard scrollbar. Is there a way to make Firefox
recognise it?
The code I currently have is:
.overflowinternal {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFFF;
background-color: #000000;
font-size: small;
height: 150px;
width: 150px;
overflow: auto;
scrollbar-face-color: #333333;
scrollbar-shadow-color: #DCDCDC;
scrollbar-highlight-color: #DCDCDC;
scrollbar-3dlight-color: #DCDCDC;
scrollbar-darkshadow-color: #000000;
scrollbar-track-color: #333333;
scrollbar-arrow-color: #DCDCDC;
}
|