border-left
Definition
The border-left property is a shorthand method for setting border-left-width, border-left-style and border-left-color property values. The left border is represented by the yellow highlighted area in the illustration below.

Example
h1 {border-left: thick solid red}
This is equivalent to:
h1 {border-left-width: thick;border-left-style: solid;border-left-color: red;}
Characteristics
Possible values
Default value
See individual properties
Applies to
Inherited
No
See also