JavaScript Change the Margin of Paragraph

To change the margin of a paragraph using JavaScript, get the reference to the paragraph element, and assign the specific value to the element.style.margin property.

Example

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head> 
<body>
    <p id="myPara" style="border:1px solid">Change Margin of Paragraph using JavaScript</p>
    <button type="button" onclick="changeStyle()">Click Me</button>
    <script>
    function changeStyle(){
        var element = document.getElementById("myPara");
        element.style.margin = "50px";
    }
    </script>
</body>
</html>

Conclusion

In this JavaScript Tutorial, we learned how to change the margin of a paragraph using JavaScript.