CSS border-width Property

CSS border-width Property

 

CSS border-width Property


CSS border-width property sets the widths of all four sides of an element's border. It is a shorthand property which specifies:

  • border-top-width, which defines the width of an element’s top border.
  • border-left-width, which defines the width of an element’s left border.
  • border-right-width, which defines the width of an element’s right border.
  • border-bottom-width, which defines the width of an element’s bottom border.

This property has four values. When one value is used, the border-width value will apply to all four sides of the element (i.e. top, right, bottom, left). If two values are used, the first value will apply to the top and bottom of the element. The second value will apply to the left and right sides of the element. If three values are used, the first value will apply to the top of the element. The second value will apply to the right and left sides of the element. The third value will apply to the bottom of the element. When four values are used, the first value will apply to the top of the element. The second value will apply to the right side of the element. The third value will apply to the bottom of the element. The fourth value will apply to the left side of the element.

Firstly you should define border-style property then the border-width property. An element must have borders before you can set the width.
Initial Valuemedium
InheritedNo
AnimatableYes. The width of the border is animatable.
VersionCSS1
JavaScript Syntaxobject.style.borderWidth = "1px 5px";

Syntax

border-width: medium | thin | thick | length | initial | inherit;

Example of the border-width property: 

<!DOCTYPE html>
<html>
  <head>
    <style>
      p {
        border-style: solid;
        border-width: 1px;
        padding: 5px;
      }
    </style>
  </head>
  <body>
    <p>This paragraph's border is selected as 1px.</p>
  </body>
</html>

Example of the border-width property with three values: 

<!DOCTYPE html>
<html>
  <head>
    <style>
      p {
        color: #666;
        padding: 5px;
        border-style: solid;
      }
      .thin {
        border-width: 1px;
      }
      .medium {
        border-width: medium;
      }
      .thick {
        border-width: 10px;
      }
    </style>
  </head>
  <body>
    <p class="thin">This paragraph's border is selected as 1px.</p>
    <p class="medium">This paragraph's border is selected as medium.</p>
    <p class="thick">This paragraph's border is selected as 10px.</p>
  </body>
</html>

Values

ValueDescription
mediumDefines a medium border. This is the default value.
thinDefines a thin border.
thickDefines a thick border.
lengthDefines the thickness of the border.
initialSets the property to its default value.
inheritInherits the property from its parent element.
Reactions

Post a Comment

0 Comments

close