如何使用JavaScript在一个声明中设置所有border top属性?

要在单个声明中设置所有border top属性,请使用borderTop属性。使用此属性,可以设置border-top-width,border-top-style和border-top-color属性。

示例

您可以尝试运行以下代码以了解如何使用JavaScript中的border-top属性-

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            border: thick solid gray;
            width: 300px;
            height: 200px
         }
      </style>
   </head>
   <body>
      <div id="box">Demo Text</div>
      <br><br>
      <button type="button" onclick="display()">Change top border</button>
      <script>
         function display() {
            document.getElementById("box").style.borderTop = "thick solid #000000";
         }
      </script>
   </body>
</html>