জাভাস্ক্রিপ্টে নীচে-ডান কোণার সীমানার আকৃতি সেট করতে, borderBottomLeftRadius ব্যবহার করুন সম্পত্তি এটি আপনাকে একটি বৃত্তাকার সীমানা যোগ করতে দেয়৷
৷উদাহরণ
নিচে-বাম কোণার আকৃতি কীভাবে সেট করতে হয় তা শিখতে আপনি নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন -
<!DOCTYPE html> <html> <head> <style> #box { border: 2px dashed blue; width: 120px; height: 120px; } </style> </head> <body> <button onclick="display()">Set bottom-left border corner</button> <div id="box"> <p>Demo Text</p> <p>Demo Text</p> </div> <script> function display() { document.getElementById("box").style.borderBottomLeftRadius = "30px"; } </script> </body> </html>