VOOZH about

URL: https://www.geeksforgeeks.org/css/css-border-left-property/

⇱ CSS border-left Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

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:

  • border-width: It is used to set the width of border.
  • border-style: It is used to set the style of border. Its default value is β€˜none’.
  • border-color: It is used to set the color of border.
  • initial: This property is used to set border-bottom to its default value.
  • inherit: This property is inherited from its parent.

Example 1:

Output:

πŸ‘ Image

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

  • Google Chrome 1.0
  • Edge 12.0
  • Internet Explorer 4.0
  • Firefox 1.0
  • Opera 3.5
  • Safari 1.0
Comment
Article Tags: