border-width

The border-width property sets all four border widths at once:

/* top right bottom left */
P { border-width: 3px 4px 
                  5px 6px }

/* set all four borders */
H2 { border-width: 1em }

The width of the border (an optional line around the element) can be set with the border-width property.