如何使用JavaScript设置底部边框的宽度?

要设置底部边框的宽度,请使用JavaScript中的borderBottomWidth属性。它允许您更改宽度。

示例

您可以尝试运行以下代码以了解如何设置底部边框的宽度-

<!DOCTYPE html>
<html>
   <body>
      <div id="box">Demo Text</div>
      <br>
      <button onclick="display()">Click to set width of bottom border</button>
      <script>
         function display() {
            document.getElementById("box").style.borderBottomStyle = "dashed";
            document.getElementById("box").style.borderBottomWidth = "5px";
         }
      </script>
   </body>
</html>
猜你喜欢