Easy Tutorial
❮ Pr Padding Top Css3 Pr Grid Columns ❯

CSS border-right-width Property

Example

Set the width of the right border:

p 
{
    border-style: solid;
    border-right-width: 15px;
}

Property Definition and Usage

The border-right-width property sets the width of an element's right border.

Note: Always declare the border-style property before the border-right-width property. An element must have borders before you can change the width.

Default value: medium
Inherit: no
--- ---
Version: CSS1
--- ---
JavaScript syntax: object.style.borderRightWidth="thick"
--- ---

Browser Support

The numbers in the table specify the first browser version that fully supports the property.

Property
border-right-width 1.0 4.0 1.0 1.0 3.5

Property Values

Value Description
thin Defines a thin right border.
medium Default value. Defines a medium right border.
thick Defines a thick right border.
length Allows you to define the width of the right border.
inherit Specifies that the border width should be inherited from the parent element.

Related Articles

CSS Tutorial: CSS Border

CSS Reference: border-right Property

❮ Pr Padding Top Css3 Pr Grid Columns ❯