The border-right-color property
The border-right-color property
specifies a color of a right border. The
value of the property is any
color units.
Default value: same color as the block text has.
Syntax
selector {
border-right-color: color;
}
Example
Let's set the right border to red:
<div id="elem"></div>
#elem {
border-right-color: red;
border-right-width: 1px;
border-right-style: solid;
background: #f9f9f9;
width: 300px;
height: 100px;
}
:
See also
-
the
border-left-colorproperty
that sets a color of a left border -
the
border-left-widthproperty
that sets a width of a left border -
the
border-left-styleproperty
that sets a style of a left border -
the
border-right-styleproperty
that sets a style of a right border -
the
border-right-widthproperty
that sets a width of a right border -
the
border-rightproperty
that sets a right border -
the
border-widthproperty
that sets a width of all sides of a border -
the
border-leftproperty
that sets a left border