scrollbarFaceColor property

Specifies the color of the scroll box and scroll arrows of a scroll bar.

 

Syntax

HRESULT value = object.put_scrollbarFaceColor( v);HRESULT value = object.get_scrollbarFaceColor(* p);

Property values

Type: VARIANT

Any color name or RGB values in the Color Table.

String format

variant

CSS information

Applies To All elements
Media visual
Inherited 1
Initial Value Default color

Standards information

There are no standards that apply here.

Remarks

Windows Internet Explorer 8. The -ms-scrollbar-face-color attribute is an extension to CSS, and can be used as a synonym for IHTMLCurrentStyle2::scrollbarFaceColor in IE8 Standards mode.

The scroll box is the square box within a scroll bar that can be moved either up and down or left and right on a track to change the position of the content on the screen. The scroll arrows, located at each end of a scroll bar, are the square buttons containing the arrows that move the content on the screen in small increments, either up and down or left and right.

This property applies to elements that display a scroll bar. Cascading Style Sheets (CSS) enable scrolling on all objects through the IHTMLRuleStyle::overflow property. These objects are not listed in the Applies To list for this property.

Examples

The following example shows how to use IHTMLCurrentStyle2::scrollbarArrowColor and IHTMLCurrentStyle2::scrollbarFaceColor to display a scroll bar with a blue scroll box and arrows, and a scroll bar with a green scroll box and arrows.

div {
  width: 150px;
  height: 150px;
  overflow-y: scroll;
  border-style: solid;
  border-width: thin;
  font-family: sans-serif;
  float: left;
  margin-right: 10px;
}
.blueScrollBox {
  scrollbar-face-color: blue;
  scrollbar-arrow-color: blue;
}
.greenScrollBox {
  scrollbar-face-color: green;
  scrollbar-arrow-color: green;
}
<body>
  <div class="blueScrollBox">
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
  </div>
  <div class="greenScrollBox">
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
  </div>
</body>

The following image shows the result:

Requirements

Minimum supported client

Windows XP

Minimum supported server

Windows 2000 Server

Header

Mshtml.h

IDL

Mshtml.idl

DLL

Mshtml.dll

See also

Reference

IHTMLCurrentStyle2::scrollbar3dLightColor

IHTMLCurrentStyle2::scrollbarArrowColor

IHTMLCurrentStyle2::scrollbarBaseColor

IHTMLCurrentStyle2::scrollbarDarkShadowColor

IHTMLCurrentStyle2::scrollbarHighlightColor

IHTMLCurrentStyle2::scrollbarShadowColor

IHTMLCurrentStyle2::scrollbarTrackColor