docs.rodeo

MDN Web Docs mirror

border-left

{{CSSRef}} 

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

{{EmbedInteractiveExample("pages/css/border-left.html")}} 

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 {{cssxref("border-left-style")}}  given before border-left is ignored. Since the default value of {{cssxref("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

Formal definition

{{CSSInfo}} 

Formal syntax

{{csssyntax}} 

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;
}

Results

{{EmbedLiveSample('Applying_a_left_border')}} 

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN