You are here: Reference > CSS > properties > border-right

border-right property

Browser support:
Specifies the color, style and width properties for the element's right border, in a shorthand form.
Available border styles:

border-right-style: dotted
border-right-style: dashed
border-right-style: solid
border-right-style: double
border-right-style: inset
border-right-style: outset
border-right-style: groove
border-right-style: ridge
border-right-style: window-inset

JavaScript page for this property: borderRight. You can find other example(s) there.

Possible values:

 One of the following values: 
 Any of the following values (use the space character to separate them, each value can be used only once): 
<border-right-color>
<border-right-style>
<border-right-width>
inherit

Description of values:

border-right-color
Specifies the color of the element's right border.
border-right-style
Specifies the style of the element's right border.
border-right-width
Specifies the width of the element's right border.
inherit
Takes the value of this property from the computed style of the parent element.
Default: this property has no default value.

Example HTML code 1:

This example illustrates the use of the border-right property:
<head>
    <style>
        .example {
            border-right: 1px solid blue;
        }
    </style>
</head>
<body>
    <div class="example">Border-right: 1px solid blue</div>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content