CSS property: border-width

Description

This property is a shorthand property for setting border-top-width, border-right-width, border-bottom-width, and border-left-width at the same place in the style sheet.

Syntax

Versions

Examples

h1 {
    border-style: solid;
    border-width: 2px;
}