CSS border-bottom-width Property
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
CSS border-bottom-width Property
❮
Reference
❯
Example
Set a width for the bottom border:
div {border-bottom-width: thin;}Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The border-bottom-width property sets the width of an element's bottom border.
Note: Always declare the border-style or the
border-bottom-style property before the border-bottom-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.borderBottomWidth="5px" Try it |
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| border-bottom-width | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
<!--
mid_content, all: [300,250][336,280][728,90][970,250][970,90][320,50][468,60]-->
CSS Syntax
border-bottom-width: medium|thin|thick|length|initial|inherit;Property Values
| Value | Description | Play it |
|---|---|---|
| medium | Specifies a medium bottom border. This is default | Play it » |
| thin | Specifies a thin bottom border | Play it » |
| thick | Specifies a thick bottom border | Play it » |
| length | Allows you to define the thickness of the bottom border. Read about length units | Play it » |
| initial | Sets this property to its default value. Read about initial | Play it » |
| inherit | Inherits this property from its parent element. Read about inherit |
More Examples
Example
Set the width of the bottom border to medium:
div {border-bottom-width: medium;}Try it Yourself »
Example
Set the width of the bottom border to thick:
div {border-bottom-width: thick;}Try it Yourself »
Example
Set the width of the bottom border to 1px:
div {border-bottom-width: 1px;}Try it Yourself »
Example
Set the width of the bottom border to 15px:
div {border-bottom-width: 15px;}Try it Yourself »
Related Pages
CSS tutorial: CSS Border
CSS reference: border-bottom property
HTML DOM reference:
borderBottomWidth property
❮
Reference
❯