How to set the bottom margin of an element with JavaScript?


Use the marginBottom property in JavaScript, to set the bottom margin.

Example

You can try to run the following code to set the bottom margin of an element with JavaScript −

Live Demo

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

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 23-Jun-2020

450 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements