The border-right-style property defines the styles of the right border of the element.
border-right-style: none | dotted | dashed | solid | double | groove | ridge | inset | outset | hidden | inherit
- none
No border displayed. - dotted
A dotted line drawn above the background. - dashed
A dashed line drawn above the background. - solid
A solid line. - double
A double line drawn above the background. The sum of the two single lines and the space between is the value of the border-width.
- outset
A 3-D outset drawn in colors based on the color property in separated borders model (CSS 2). Same as groove in collapsing borders model. - hidden
Same as none, but in the collapsing border model inhibits any other border (CSS 2). - inherit
The element should have the same border-right-style setting as the parent.
none.
border-right-style Applies To
All elements.
This property is not inherited.
border-spacing Media Type
- Visual
standard border-right-style
<p style="border-right-style : solid;">
This paragraph has a solid right border.
</p>
- No borders are set unless the border style is set.

