मार्जिनराइट का उपयोग करें जावास्क्रिप्ट में संपत्ति, सही मार्जिन सेट करने के लिए। आप जावास्क्रिप्ट के साथ एक तत्व का सही मार्जिन सेट करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <style> #myID { border: 2px solid #000000; } </style> </head> <body> <div id="myID">This is demo text.</div><br> <button type="button" onclick="display()">Add right margin</button> <script> function display() { document.getElementById("myID").style.marginRight = "150px"; } </script> </body> </html>