CSS - 右边框宽度



设置元素右边框的宽度。

可能的值

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

  • thin - 比设置为 medium 的边框更细的边框。

  • medium - 比设置为 thin 的边框更粗,比设置为 thick 的边框更细的边框。

  • thick - 比设置为 medium 的边框更粗的边框。

应用于

所有 HTML 元素。

DOM 语法

object.style.borderRightWidth = "2px";

示例

以下示例演示了border-right-width 属性 -

<html>
<head>
   <style>
      h2{
           border-style: dotted;
           border-right-width: 5px;
       }
       p {border-style: solid;
          border-right-width: thin;
          }

   </style>
</head>
<body>
      <h2>border-right-width (single-side)</h2>
      <p>Different border widths on all sides. Check the width at the right of the element.</p>
</body>
</html>
广告