Style borderRightColor Property
Example
Change the color of the right border of a <div> element to red:
document.getElementById("myDiv").style.borderRightColor = "red";Try it Yourself »
Definition and Usage
The borderRightColor property sets or returns the color of the right border of an element.
Browser Support
| Property | |||||
|---|---|---|---|---|---|
| borderRightColor | Yes | Yes | Yes | Yes | Yes |
Syntax
Return the borderRightColor property:
object.style.borderRightColor
Set the borderRightColor property:
object.style.borderRightColor = "color|transparent|initial|inherit"
Property Values
| Value | Description |
|---|---|
| color | Specifies the color of the right border. Look at CSS Color Values for a complete list of possible color values. Default color is the current color of the element |
| transparent | The color of the right border is transparent (underlying content will shine through) |
| initial | Sets this property to its default value. Read about initial |
| inherit | Inherits this property from its parent element. Read about inherit |
Technical Details
| Default Value: | current color |
|---|---|
| Return Value: | A String, representing the color of an element's right border |
| CSS Version | CSS1 |
More Examples
Example
Return the right border color of a <div> element:
alert(document.getElementById("myDiv").style.borderRightColor);
Try it Yourself »
Related Pages
CSS tutorial: CSS Border
CSS reference: border-right-color property
HTML DOM reference: border property