Appearance:
{ scrollbar-face-color : vColor }
Possible Values:
color value
Initial Value:
The property has no default value
Applies to:
Sets or retrieves the color of the scroll box and scroll arrows of a scroll bar. Microsoft® Internet Explorer 5+ only
Inherited: [i]
Yes

Scripting: object.style.scrollbarFaceColor [ = 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 scrollbarFaceColor property for a TEXTAREA element.

<HTML>
<HEAD>
<STYLE>
TEXTAREA.BlueFace { scrollbar-face-color:blue }
</STYLE>
</HEAD>
<BODY>
<TEXTAREA CLASS="BlueFace">The thumb and button-face elements in the scroll bar for
this element will be blue.</TEXTAREA>
</BODY>
</HTML>