如何用 JavaScript 设置元素的底部内边距?


要设置底部内边距,请在 JavaScript 中使用 paddingBottom 属性。

示例

你可以尝试运行以下代码来返回使用 JavaScript 设置的元素的底部内边距 −

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            border: 2px solid #FF0000;
            width: 150px;
            height: 70px;
         }
      </style>
   </head>
   <body>
      <div id = "box">This is demo text.</div>
      <br>
      <br>
      <button type = "button" onclick = "display()">Bottom padding</button>
     
      <script>
         function display() {
            document.getElementById("box").style.paddingBottom = "100px";
         }
      </script>
   </body>
</html>

更新日期: 2020 年 6 月 23 日

577 次浏览

开启你的 职业生涯

完成课程获得认证

立即开始
广告