CSS border-right-width Property | Learn CSS
Set a width for the right border:
div {border-right-width: thin;}
More “Try it Yourself” examples below.
Definition and Usage
The border-right-width property sets the width of an element’s right border.
Note: Always declare the border-style or the border-right-style property before the border-right-width property. An element must have borders before you can change the width.
| Default value: | medium |
|---|---|
| Inherited: | no |
| Animatable: | yes. Read about animatable – Try it |
| Version: | CSS1 |
| JavaScript syntax: | object.style.borderRightWidth=”5px” Try it |
CSS Syntax
border-right-width: medium|thin|thick|length|initial|inherit;
Property Values
| Value | Description |
|---|---|
| medium | Specifies a medium right border. This is default |
| thin | Specifies a thin right border |
| thick | Specifies a thick right border |
| length | Allows you to define the thickness of the right border |
| initial | Sets this property to its default value. Read about initial |
| inherit | Inherits this property from its parent element. Read about inherit |
