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-color
property
that sets a color of a left border -
the
border-left-width
property
that sets a width of a left border -
the
border-left-style
property
that sets a style of a left border -
the
border-right-style
property
that sets a style of a right border -
the
border-right-width
property
that sets a width of a right border -
the
border-right
property
that sets a right border -
the
border-width
property
that sets a width of all sides of a border -
the
border-left
property
that sets a left border