স্ট্যাক অর্ডার সেট করতে, zIndex ব্যবহার করুন সম্পত্তি আপনি zIndex বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন জাভাস্ক্রিপ্ট-
-এ সম্পত্তিউদাহরণ
<!DOCTYPE html> <html> <head> <style> #myID { position: absolute; left: 20px; top: 20px; z-index: -1 } </style> </head> <body> <img id = "myID" src="https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg" width = "150" height = "150"> <button type="button" onclick="myFunction()">Set Stack Order</button> <p>Z-index is -1</p> <script> function myFunction() { document.getElementById("myID").style.zIndex = "1"; } </script> </body> </html>