This page is In Progress

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

-ms-scrollbar-arrow-color

Property of css/propertiescss/properties

Syntax

var result = element.-ms-scrollbar-arrow-color;
element.-ms-scrollbar-arrow-color = value;

Examples

The following example shows how to create a style rule that sets the -ms-scrollbar-arrow-color 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>

View live example

Notes

Remarks

Windows Internet Explorer 8. The -ms-scrollbar-arrow-color attribute is an extension to CSS, and can be used as a synonym for scrollbar-arrow-color in IE8 Standards mode. 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 overflow property. These objects are not listed in the Applies To list for this property.

Syntax

-ms-scrollbar-arrow-color: variant

Standards information

There are no standards that apply here.

See also

Related articles

Scrollbar

Related pages

Attributions