The border-right-width property
The border-right-width
property specifies
a width of a right border. The value of the property
is any
size units,
except percentages, or the keywords thin
(2
pixels border), medium
(4
pixels
border) or thick
(6
pixels border). Default
value: medium
.
Syntax
selector {
border-right-width: value;
}
Example
Let's set a right border to one pixel width:
<div id="elem"></div>
#elem {
border-right-width: 1px;
border-right-style: solid;
border-right-color: black;
background: #f9f9f9;
width: 300px;
height: 100px;
}
:
See also
-
the
border-right-style
property
that sets a style of a right border -
the
border-right-color
property
that sets a color of a right border -
the
border-right
property
that sets a border for a right side -
the
border-width
property
that sets a width of all sides of a border -
the
border-left
property
that sets a left border -
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