CSS - border-left-width 属性



CSS border-left-width 属性决定元素左侧边框的宽度。在使用此属性之前,必须声明 border-left-style

语法

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

属性值

描述
medium 指定左侧边框中等宽度。默认值。
thin 指定左侧边框细宽度。
thick 指定左侧边框粗宽度。
长度 厚度可以以值的形态给出。
initial 将属性设置为其默认值。
inherit 从父元素继承属性。

CSS 左边框宽度属性示例

以下示例解释了使用不同值的 border-left-width 属性。

使用 medium 值的左边界宽度属性

要将中等宽度设置为左边界,我们可以使用 medium 值。在以下示例中,border-left-width 属性使用了 medium 值。

示例

    
<!DOCTYPE html>
<html>

<head>
   <style>
      .container {
         display: block;
         align-items: center;
         justify-content: center;
      }

      .properties {
         padding: 10px;
         text-align: center;
      }

      .heading {
         background-color:lightgray; 
         border-left-style:solid;
         border-left-width: medium;
      }

      .border {
         border: 1px solid #e74c0c;
         border-left-width: medium;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-left-width property
   </h2>
   <div class="container">
      <h2 class="properties heading">
         This heading has a 'medium' 
         border-left-width.
      </h2>
      <p class="properties border">
         This border has a 'medium' 
         border-left-width.
      </p>
   </div>
</body>

</html>

使用 thin 值的左边界宽度属性

要将小宽度设置为左边界,我们可以使用 thin 值。在以下示例中,border-left-width 属性使用了 thin 值。

示例

    
<!DOCTYPE html>
<html>

<head>
   <style>
      .container {
         display: block;
         align-items: center;
         justify-content: center;
      }

      .properties {
         padding: 10px;
         text-align: center;
      }

      .heading {
         background-color:lightgray; 
         border-left-style:solid;
         border-left-width: thin;
      }

      .border {
         border: 3px solid #e74c0c;
         border-left-width: thin;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-left-width property
   </h2>
   <div class="container">
      <h2 class="properties heading">
         This heading has a 'thin' 
         border-left-width.
      </h2>
      <p class="properties border">
         This border has a 'thin' 
         border-left-width.
      </p>
   </div>
</body>

</html>

使用 thick 值的左边界宽度属性

要将粗宽度设置为左边界,我们可以使用 thick 值。在以下示例中,border-left-width 属性使用了 thick 值。

示例

    
<!DOCTYPE html>
<html>

<head>
   <style>
      .container {
         display: block;
         align-items: center;
         justify-content: center;
      }

      .properties {
         padding: 10px;
         text-align: center;
      }

      .heading {
         background-color:lightgray; 
         border-left-style:solid;
         border-left-width: thick;
      }

      .border {
         border: 1px solid #e74c0c;
         border-left-width: thick;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-left-width property
   </h2>
   <div class="container">
      <h2 class="properties heading">
         This heading has a 'thick' 
         border-left-width.
      </h2>
      <p class="properties border">
         This border has a 'thick' 
         border-left-width.
      </p>
   </div>
</body>

</html>

使用长度值的左边界宽度属性

要设置左边界宽度,我们可以使用长度值(例如 10px、15px 等)指定宽度。在以下示例中,border-left-width 属性使用了长度值。

示例

    
<!DOCTYPE html>
<html>

<head>
   <style>
      .container {
         display: block;
         align-items: center;
         justify-content: center;
      }

      .properties {
         padding: 10px;
         text-align: center;
      }

      .heading {
         background-color:lightgray; 
         border-left-style:solid;
         border-left-width: 15px;
      }

      .border {
         border: 1px solid #e74c0c;
         border-left-width: 30px;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-left-width property
   </h2>
   <div class="container">
      <h2 class="properties heading">
         This heading has a 15px 
         border-left-width.
      </h2>
      <p class="properties border">
         This border has a 30px 
         border-left-width.
      </p>
   </div>
</body>

</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
border-left-width 1.0 4.0 1.0 1.0 3.5
css_properties_reference.htm
广告