Appearance:
{ scrollbar-arrow-color : vColor }
Possible Values:
color value
Initial Value:
The property has no default value
Applies to:
Sets or retrieves the color of the arrow elements of a scroll arrow. Microsoft® Internet Explorer 5+ only
Inherited: [i]
Yes
Scripting: object.style.scrollbarArrowColor [ = 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. The property has no default value. The Microsoft cascading style sheets (CSS) extension is inherited. 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 scrollbarArrowColor property for a TEXTAREA element.
<HTML>
<HEAD>
<STYLE>
TEXTAREA.BlueArrow { scrollbar-arrow-color:blue }
</STYLE>
</HEAD>
<BODY>
<TEXTAREA CLASS="BlueArrow">The arrows in the scroll bar for
this element will be blue.</TEXTAREA>
</BODY>
</HTML>