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