borderTopColor property
Specifies the foreground color of the top border of an object.
Syntax
Integer value = object.put_borderTopColor(Variant v);Integer value = object.get_borderTopColor(Variant* sColor);
Property values
Type: VARIANT
One of the color names or RGB values in the Color Table.
String format
<color> | currentColor | transparent | inherit
CSS information
Applies To | All elements |
Media | visual |
Inherited | no |
Initial Value | currentColor |
Standards information
- CSS Backgrounds and Borders Module Level 3, Section 4.1
Remarks
Some browsers do not recognize color names, but all browsers should recognize RGB color values and display them correctly.
Examples
This example uses IHTMLRuleStyle::borderTopColor to set the top border color to a different color than the rest of the border.
<body>
<div class="box"></div>
<div class="rounded"></div>
</body>
The CSS below sets the top border color for two div elements. The remaining border sides retain the color specified by the IHTMLRuleStyle::borderColor property.
.box {
border-color: #BBBBBB;
border-top-color: blue;
border-style: solid;
}
.rounded {
border-color: #C20000;
border-top-color: #BBBBBB;
border-style: dashed;
border-radius: 10px;
}
Requirements
Minimum supported client |
Windows XP |
Minimum supported server |
Windows Server 2003 |
Header |
Mshtml.h |
IDL |
Mshtml.idl |
DLL |
Mshtml.dll |
See also
IHTMLRuleStyle::borderRightColor