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