css properties border-left

The border-left shorthand CSS property sets all the properties of an element's left border.

As with all shorthand properties, border-left always sets the values of all of the properties that it can set, even if they are not specified. It sets those that are not specified to their default values. Consider the following code:

border-left-style: dotted;
border-left: thick green;

It is actually the same as this one:

border-left-style: dotted;
border-left: none thick green;

The value of border-left-style given before border-left is ignored. Since the default value of border-left-style is none, not specifying the border-style part results in no border.

Constituent properties

This property is a shorthand for the following CSS properties:

Syntax

border-left: 1px;
border-left: 2px dotted;
border-left: medium dashed blue;

/* Global values */
border-left: inherit;
border-left: initial;
border-left: revert;
border-left: revert-layer;
border-left: unset;

The three values of the shorthand property can be specified in any order, and one or two of them may be omitted.

Values

<br-width>

See border-left-width.

<br-style>

See border-left-style.

<color>

See border-left-color.

Examples

Applying a left border

HTML

<div>This box has a border on the left side.</div>

CSS

div {
  border-left: 4px dashed blue;
  background-color: gold;
  height: 100px;
  width: 100px;
  font-weight: bold;
  text-align: center;
}

See also