Appearance:
{ scrollbar-highlight-color : vColor }
Possible Values:
color value
Initial Value:
The property has no default value
Applies to:
Sets or retrieves the color of the top and left edges of the scroll box and scroll arrows of a scroll bar. Microsoft® Internet Explorer 5+ only
Inherited: [i]
Yes
Scripting: object.style.scrollbarHighlightColor [ = 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 Example The following example shows how to create a style rule that sets the scrollbarHighlightColor property for a TEXTAREA element.
<HTML>
<HEAD>
<STYLE>
TEXTAREA.BlueHighlight { scrollbar-highlight-color:blue }
</STYLE>
</HEAD>
<BODY>
<TEXTAREA CLASS="BlueHighlight">The scroll bar face for this
element will turn blue when a scroll bar button is pressed.
</TEXTAREA>
</BODY>
</HTML>