CSS border-right-color Property
Description
The CSS property border-right-color
is used to define the color of the right border of an element, such as a div or a paragraph, in a web page. This property is part of the broader border property set, which allows you to control the appearance of an element's borders. By specifying a color value, you can customize the right border's color independently of the other borders (top, bottom, and left). This property is useful for creating visually appealing and distinct border styles for different sides of an element, helping to enhance the overall design and layout of a webpage.
- Initial value
- currentColor
- Applies to
- All elements
- Inherited
- No
- Computed value
- The computed color
- Animatable
- Yes
- JavaScript syntax
- object.style.borderRightColor
Interactive Demo
Syntax
border-right-color: <color>
Values
- <color>The computed value of the 'color' property. This value can be a basic color keyword, such as red or green, a numerical value, an RGB or RGBA value, or an HSL or HSLA value.
- transparentFully transparent. This keyword can be considered a shorthand for transparent black, rgba(0,0,0,0), which is its computed value.
- inherit
Example
<div class="border">This is an example of the border-right-color property using a red solid border 3px in width.</div>
.border {
border: 1px solid blue;
border-right-style: solid;
border-right-width: 3px;
border-right-color: red;
margin: 20px;
padding: 20px;
}
Browser Support
The following table will show you the current browser support for the CSS border-right-color
property.
Desktop | |||||
12 | 1 | 1 | 3.5 | 1 |
Tablets / Mobile | |||||
18 | 4 | 10.1 | 1 | 1 | 4.4 |
Last updated by CSSPortal on: 31st December 2023