paddingLeft . का प्रयोग करें जावास्क्रिप्ट में संपत्ति बाएं पैडिंग सेट करने के लिए। आप जावास्क्रिप्ट के साथ एक तत्व के बाएं पैडिंग को वापस करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!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()">Left padding</button> <script> function display() { document.getElementById("box").style.paddingLeft = "100px"; } </script> </body> </html>