Using Internet Explorer and FireFox
I want to change my scroll bar color
Code
<div style="overflow: auto; width: 750px; height: 400px">
</div>
The Above code is for Scroll bar, But How to change the scroll bar color.
Tried code.
<STYLE TYPE="text/css">
BODY
{
scrollbar-base-color: orange;
scrollbar-arrow-color: green;
scrollbar-DarkShadow-Color: blue;
}
</STYLE>
The above code is added in my header tag. But the color was not changing.
Can any one help me.