如何用 JavaScript 在一次声明中设置所有边框顶部属性?


要通过一次声明设置所有边框顶部属性,请使用 borderTop 属性。通过此属性,可以设置 border-top-width、border-top-style 和 border-top-color 属性。

示例

可以尝试运行以下代码,了解如何使用 JavaScript 中的边框顶部属性 −

在线演示

<!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>

更新于: 2020 年 6 月 23 日

208 次浏览

开启您的 职业 生涯

完成课程后获得认证

立即开始
广告