

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML DOM Style margin Property
The DOM style margin property returns and modify the margin of an element in an HTML document.
Syntax
Following is the syntax −
Returning margin
object.style.margin
Modifying margin
object.style.margin = “value”
Example
Let us see an example of style margin property −
<!DOCTYPE html> <html> <head> <style> body { color: #000; background: lightblue; height: 100vh; } p { border: 2px solid #fff; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; } </style> </head> <body> <h1>DOM Style margin Property Example</h1> <p>Hi! I'm awesome paragraph with some random text. Hi! I'm awesome paragraph with some random text. Hi! I'm awesome paragraph with some random text. Hi! I'm awesome paragraph with some random text. </p> <button onclick="add()" class="btn">Add margin</button> <script> function add() { document.querySelector('p').style.margin = "20px 30px"; } </script> </body> </html>
Output
This will produce the following output −
Click on “Add margin” button to add margin to paragraph element −
- Related Questions & Answers
- HTML DOM Style unicodeBidi Property
- HTML DOM Style userSelect Property
- HTML DOM Style verticalAlign Property
- HTML DOM Style visibility Property
- HTML DOM Style whiteSpace Property
- HTML DOM Style wordBreak Property
- HTML DOM Style wordSpacing Property
- HTML DOM Style wordWrap Property
- HTML DOM Style zIndex Property
- HTML DOM Style borderImageOutset Property
- HTML DOM Style lineHeight Property
- HTML DOM Style marginBottom Property
- HTML DOM Style marginTop Property
- HTML DOM Style marginLeft Property
- HTML DOM Style marginRight Property
Advertisements