CSS 属性

设置元素下边框的宽度。

属性值

  • length: 任何长度单位。此属性的长度单位不能为负。

  • thin: 比设置为中等的边框更细的边框。

  • medium: 比设置为薄的边框更厚的边框,比设置为厚的边框更薄的边框。

  • thick: 比设置的边框更厚的边框到中等。

适用范围

所有 HTML 元素。

DOM 语法

object.style.borderBottomWidth = "2px"; 
始终声明 border-styleborder-bottom -style 属性位于 border-bottom-width 属性之前。

示例

以下示例演示了 border-bottom-width 属性:

<html>
<head>
   <style>
       p {border-style: solid;
          border-bottom-width: thin;
          }
       h2{
           border-style: dotted;
           border-bottom-width: 10px;
       }
   </style>
</head>
<body>
      <h2>border-bottom-width (single-side)</h2>
      <p>各边的边框宽度不同。 检查元素底部的宽度.</p>
</body>
</html>