

- 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 paddingLeft Property
The DOM style paddingLeft property returns and modify the left padding of an element in an HTML document.
Syntax
Following is the syntax −
Returning paddingLeft
object.style.paddingLeft
Modifying paddingLeft
object.style.paddingLeft = “value”
Example
Let us see an example of style paddingLeft 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 paddingLeft 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 padding</button> <script> function add() { document.querySelector('p').style.paddingLeft = "30px"; } </script> </body> </html>
Output
This will produce the following output −
Click on “Add padding” button to add left padding to paragraph element.
- Related Questions & Answers
- HTML DOM paddingLeft Property
- HTML DOM Style lineHeight Property
- HTML DOM Style margin Property
- HTML DOM Style marginBottom Property
- HTML DOM Style marginTop Property
- HTML DOM Style marginLeft Property
- HTML DOM Style marginRight Property
- HTML DOM Style opacity Property
- HTML DOM Style padding Property
- HTML DOM Style paddingBottom Property
- HTML DOM Style outline Property
- HTML DOM Style outlineColor Property
- HTML DOM Style outlineWidth Property
- HTML DOM Style outlineStyle Property
- HTML DOM Style outlineOffset Property
Advertisements