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