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

使用JavaScript中的marginBottom属性来设置底部边距。

示例

您可以尝试运行以下代码以使用JavaScript设置元素的下边距-

<!DOCTYPE html>
<html>
   <body>
      <p id="myID">This is demo text.</p>
      <button type="button" onclick="display()">Set bottom margin</button>
      <script>
         function display() {
            document.getElementById("myID").style.marginBottom = "95px";
         }
      </script>
   </body>
</html>
猜你喜欢