Border Right Width
{border-right-width: XXunits/thin/medium/thick}The border-right-width property lets you set the width of an element's right border.
It is illegal to use negative values for border-right-width. Different Web browsers interpret thin, medium, and thick differently, but the width of thin is always smaller than medium, which is always smaller than thick.
The border-right-width property should be used in conjunction with the border-style property to ensure that CSS-enabled browsers process it correctly.
Example:
P {border-right-width: 20px}
If you are using a CSS-enabled browser, this paragraph has a 20-pixel-tall right border.