Specifies the properties of the right border of the object.
| .png) | 
Syntax
Integer value = object.put_borderRight(BSTR v);Integer value = object.get_borderRight(BSTR* sRight);
Property values
Type: BSTR
one or more of the space-delimited values listed in Possible Values.
width (medium)
Any of the range of width values available to the IHTMLRuleStyle::borderRightWidth property.
style (none)
Any of the range of style values available to the IHTMLRuleStyle::borderRightStyle property.
color
Any of the range of color values available to the IHTMLRuleStyle::borderRightColor property.
String format
border-right-width || border-right-style ||           <border-right-color>         
CSS information
| Applies To | All elements | 
| Media | visual | 
| Inherited | no | 
| Initial Value | (see individual properties) | 
Standards information
- CSS Backgrounds and Borders Module Level 3, Section 4.4
Remarks
The IHTMLRuleStyle::borderRight property is a shorthand property that sets the width, style, and color values for the right border of an object.
All individual border properties not set by the shorthand IHTMLRuleStyle::borderRight property are set to their default values. For example, the default value for width is "medium".
If a color is not specified, the text color is used.
For more information about supported colors, see the Color Table.
Examples
This example uses IHTMLRuleStyle::borderRight to change IHTMLRuleStyle::borderRightWidth, IHTMLRuleStyle::borderRightStyle, and IHTMLRuleStyle::borderRightColor for a div element.
.png)
<body>
   <div class="right"></div>
</body>
div {
   border: 2px solid black;
   height: 50px;
   width: 50px;
}
.right {
   border-right: 2px dashed #00BFFF;
}
Requirements
| Minimum supported client | Windows XP | 
| Minimum supported server | Windows Server 2003 | 
| Header | Mshtml.h | 
| IDL | Mshtml.idl | 
| DLL | Mshtml.dll | 
See also
Reference
Other Resources