मार्जिन बॉटम का उपयोग करें जावास्क्रिप्ट में संपत्ति, निचला मार्जिन सेट करने के लिए।
उदाहरण
जावास्क्रिप्ट के साथ एक तत्व के निचले मार्जिन को सेट करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <p id="myID">This is demo text.</p> <button type="button" onclick="display()">Set bottom margin</button> <script> function display() { document.getElementById("myID").style.marginBottom = "95px"; } </script> </body> </html>