Appearance:
{ scrollbar-3dlight-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.scrollbar3dLightColor [ = vColor ]

vColor Variant that specifies or receives any color name or RGB values in the Color Table.

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 scrollbar3dLightColor property for a TEXTAREA element.

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