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