Appearance:
{ scrollbar-base-color : vColor }
Possible Values:
color value
Initial Value:
The property has no default value
Applies to:
Sets or retrieves the color of the main elements of a scroll bar, which include the scroll box, track, and scroll arrows.Microsoft® Internet Explorer 5+ only
Inherited:
Yes
Scripting: object.style.scrollbarBaseColor [ = vColor ]
vColor Variant that specifies or receives any color name or RGB values in the Color Table. The property is read/write for all objects with the following exception: currentStyle. Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. Click here to view the Colour Table ExamplesThe following example shows how to create a style rule that sets the scrollbarBaseColor property for a TEXTAREA element.
<html>
<head>
<style>
textarea.BlueScrollbar { scrollbar-base-color:blue }
</style>
</head>
<body>
<textarea class="BlueScrollbar">The scroll bar for
this element will be blue.</textarea>
</body>
</html>