बाईं ओर का प्रयोग करें एक बटन जैसे स्थित तत्व की बाईं स्थिति सेट करने के लिए गुण।
उदाहरण
जावास्क्रिप्ट के साथ स्थित तत्व की बाईं स्थिति सेट करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> <style> #myID { position: absolute; } </style> </head> <body> <h1>Heading 1</h1> <p>This is Demo Text.</p> <button type="button" id="myID" onclick="display()">Change Left Position</button> <script> function display() { document.getElementById("myID").style.left = "150px"; } </script> </body> </html>