如何在JavaScript DOM的一个声明中设置所有边框的底部属性?

要在JavaScript的一个声明中设置border bottom属性,请使用borderBottom属性。它允许您设置border-bottom-width,border-bottom-style和border-bottom-color。

示例

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

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            border: 2px dashed blue;
            width: 120px;
            height: 120px;
         }
      </style>
   </head>
   <body>
      <button onclick="display()">Set border bottom color</button>
      <div id="box">
         <p>Demo Text</p>
         <p>Demo Text</p>
      </div>
      <script>
         function display() {
            document.getElementById("box").style.borderBottom = "thin dashed #000000";
         }
      </script>
   </body>
</html>