border-right-color Description:
The border-right-color property defines the color of the right border of the element.
border-right-color in CSS Versions:
border-right-color Syntax:
border-right-color: <color> | transparent | inherit
- color
A specific color. - transparent
The color of the element beneath it shows through the border. - inherit
The element should have the same border-right-color setting as the parent.
border-right-color Initial Value:
The value of the color property.
border-right-color Applies To:
All elements.
border-right-color Inheritance:
This property is not inherited.
border-right-color Browser Support:
border-right-color Examples:
standard border-right-color
<p style="border-right-color : red; border-right-width:1em; border-right-style: solid;">
This paragraph has a red right border.
</p>
border-right-color Special Notes:
- Colors can be defined as hexadecimal (#ff0000), RGB (rgb(255,0,0)), or color names (red).

