Set Top Padding of an Element with JavaScript



Use the paddingTop property in JavaScript to set the top padding. You can try to run the following code to set the top padding of an element with JavaScript −

Example

<!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()">Top Padding</button>
     
      <script>
         function display() {
            document.getElementById("box").style.paddingTop = "20px";
         }
      </script>
   </body>
</html>
Updated on: 2020-06-23T11:26:36+05:30

553 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements