如何使用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>
猜你喜欢