বর্ডারBottomLeftRadius উপাদানটির নীচের ডানদিকের সীমানায় বৃত্তাকার কোণগুলি যোগ করতে ব্যবহৃত হয়। আমরা নীচের বাম কোণে সীমানা আকার সেট করতে এবং পেতে পারি।
সিনট্যাক্স
−
-এর সিনট্যাক্স নিচে দেওয়া হলBottomLeftRadius প্রপার্টি −
বর্ডার সেট করা হচ্ছেobject.style.borderBottomLeftRadius = "length|% [length|%]|initial|inherit"
মান
সম্পত্তি মান নিম্নরূপ ব্যাখ্যা করা হয় −
Sr. No | মান ও বর্ণনা |
---|---|
1 | দৈর্ঘ্য৷ নিচের বাম কোণার আকৃতি নির্ধারণের জন্য |
2 | %৷ শতাংশে নীচের বাম কোণার আকৃতি সংজ্ঞায়িত করার জন্য। |
3 | প্রাথমিক৷ এই সম্পত্তি প্রাথমিক মান সেট করার জন্য. |
4 | উত্তরাধিকার৷ পিতামাতার সম্পত্তির মান উত্তরাধিকার সূত্রে পাওয়া |
উদাহরণ
আসুন আমরা বর্ডারবটম লেফট রেডিয়াস প্রপার্টি −
এর একটি উদাহরণ দেখি<!DOCTYPE html> <html> <head> <style> #DIV1{ height: 100px; width: 200px; border: 10px groove orange; padding: 10px; border-bottom-left-radius: 240px 90px; } </style> <script> function changeBottomBorder(){ document.getElementById("DIV1").style.borderBottomLeftRadius="90px 50px"; document.getElementById("Sample").innerHTML="The bottom border left radius is now decreased"; } </script> </head> <body> <div id="DIV1">SOME SAMPLE TEXT</div> <p>Change the above image bottom left border size by clicking the below button</p> <button onclick="changeBottomBorder()">Change Bottom Border</button> <p id="Sample"></p> </body> </html>
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবে
"নিচের সীমানা পরিবর্তন করুন" বোতামে ক্লিক করলে -