border-right
Definition
The border-right property is a shorthand method for setting border-right-width, border-right-style and border-right-color property values. The right border is represented by the yellow highlighted area in the illustration below.

Example
h1 {border-right: thick solid red}
This is equivalent to:
h1 {border-right-width: thick;border-right-style: solid;border-right-color: red;}
Characteristics
Possible values
Default value
See individual properties
Applies to
All elements
Inherited
No
See also