Appearance:
{ scrollbar-shadow-color : vColor }
Possible Values:
color value
Initial Value:
The property has no default value
Applies to:
Sets or retrieves the color of the bottom and right edges of the scroll box and scroll arrows of a scroll bar. Microsoft® Internet Explorer 5+ only
Inherited: [i]
Yes
Scripting: Scripting object.style.scrollbarShadowColor [ = 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 scrollbarShadowColor property for a TEXTAREA element.<HTML>
<HEAD>
<STYLE>
TEXTAREA.BlueShadow { scrollbar-shadow-color:blue }
</STYLE>
</HEAD>
<BODY>
<TEXTAREA CLASS="BlueShadow">The gutter elements in the scroll bar for
this element will be blue.</TEXTAREA>
</BODY>
</HTML>