CSS Border-Left Property



CSS Tutorial  >  Border  >  Border-left

The border-left property defines the left border of an element. It is a shorthand that defines the style, width, and color of the left border. It is the combination of the following three properties:

  • border-left-style
  • border-left-width
  • border-left-color

It does not matter what order the values appear in. In addition, not all three values need to be present. If a value is not present, it will be set to the default. The default value for each property is as follows:

  • border-left-style: none
  • border-left-width: medium
  • border-left-color: black

Note that the default value for border-left-style is "none," so if the border-left-style is not defined in border-left, no border will appear.

Example 1: All three values are defined

CSS Declaration

width: 200px;
height: 100px;
border-left: solid 5px red;

results in the following

Example 2: Only two values are defined

CSS Declaration

width: 200px;
height: 100px;
border-left: blue dashed;

results in the following:

In Example 2, the width of the left border is not defined, so it is set to the default value of "medium."

Next: CSS Border-Right




Copyright © 2024   1keydata.com   All Rights Reserved   Privacy Policy   About   Contact

AdBlock Detected!

Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.