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