जावास्क्रिप्ट के साथ स्थित तत्व की निचली स्थिति सेट करने के लिए, नीचे का उपयोग करें संपत्ति।
उदाहरण
नीचे की स्थिति कैसे सेट करें, यह जानने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> <style> #newBtn { position: absolute; } </style> </head> <body> <button type="button" id="newBtn" type="button" onclick="display()">Set Bottom Position</button> <script> function display() { document.getElementById("newBtn").style.bottom = "400px"; } </script> </body> </html>