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


要在 JavaScript 中的一个声明中设置边框底部属性,请使用 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>

更新于:23-Jun-2020

92 次浏览

启动你的职业

完成课程获得认证

開始
广告