CSS borderleft Property (original) (raw)

CSS border-left Property

Last Updated : 23 Aug, 2024

The **border-left property in CSS is used to set all bottom left properties in one line. It is used to set the width, style, and color of the left border.
**Syntax:

border-left: border-width border-style border-color|initial|
inherit;

**border-left is a shorthand to set the below property values.
**Property Values:

**Example 1:

html `

border-left property
<!-- border-left CSS property -->
<style>
    h1 {
        border-left: 5px solid green;
    }
    
    h2 {
        border-left: 4px dotted black;
    }
    
    div {
        border: 2px solid red;
        border-left: 2px dashed black;
    }
</style>
<h1>GeeksforGeeks</h1>
<h2>border-left property</h2>
<div>
  GeeksForGeeks.
  A computer science portal for geeks.
</div>

`

**Output:

**Supported Browsers: The browser supported by _border-left property are listed below: