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

border-bottom-style property

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

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

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

Possible values:

 One of the following 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.

Example HTML code 1:

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

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content