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

border-style property

Browser support:
Specifies the style of the element's border.
Available border styles:

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

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

Possible values:

 One of the following values: 
 This value can be used from 1 to 4 times (use the space character to separate them) 
 One of the following values: 
dotted
dashed
double
groove
hidden
inset
none
outset
ridge
solid
window-inset
-moz-bg-inset
-moz-bg-outset
-moz-bg-solid
inherit

Description of values:

-moz-bg-inset
The border looks as though it were embedded in the canvas.
-moz-bg-outset
The border looks as though it were coming out of the canvas.
-moz-bg-solid
A solid line is drawn.
dashed
A series of short line segments is drawn.
dotted
A series of dots is drawn.
double
A double line border.
groove
The border looks as if it has been carved into the background.
hidden
Turns the border off.
inherit
Takes the value of this property from the computed style of the parent element.
inset
The border looks as though it were embedded in the canvas.
none
Default. Border width is null.
outset
The border looks as though it were coming out of the canvas.
ridge
The border looks as if it's protruding out of the background.
solid
A solid line is drawn.
window-inset
The border looks as though it were embedded in the canvas with an additional single line.
Default: none.

  • If only one border-style value is set, it is used for all four borders.
  • If two border-style values are specified, the first value is used for the top and bottom borders, the second one is for the left and right borders.
  • If three border-style values are set, the first value is used for the top border, the second one is for the left and right borders and the third one is for the bottom border.
  • If four border-style values are specified, the order is top, right, bottom, left (clockwise from top).

Example HTML code 1:

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

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content