একটি উপাদানের সঠিক অবস্থান সেট করতে, JavaScript এ সঠিক বৈশিষ্ট্য ব্যবহার করুন।
উদাহরণ
আপনি জাভাস্ক্রিপ্ট -
এর সাথে একটি অবস্থানযুক্ত উপাদানের সঠিক অবস্থান সেট করতে নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন<!DOCTYPE html> <html> <head> <style> #box { width: 350px; height: 200px; background-color: orange; border: 3px solid red; position: absolute; } </style> </head> <body> <p>Click to set the right position.</p> <button type = "button" onclick = "display()"> Set Right Position </button> <div id="box"> <p>This is a div. This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div. This is a div.<p> </div> <br> <br> <script> function display() { document.getElementById("box").style.right = "70px"; } </script> </body> </html>