Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM สไตล์ borderBottomLeftRadius Property


borderBottomLeftRadius ใช้เพื่อเพิ่มมุมโค้งมนให้กับเส้นขอบล่างขวาขององค์ประกอบ เราสามารถกำหนดรูปทรงเส้นขอบที่มุมล่างซ้ายได้

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์สำหรับ −

การตั้งค่าคุณสมบัติ borderBottomLeftRadius -

object.style.borderBottomLeftRadius = "length|% [length|%]|initial|inherit"

คุณค่า

ค่าคุณสมบัติอธิบายได้ดังนี้ -

Sr.No ค่า &คำอธิบาย
1 ความยาว
สำหรับกำหนดรูปร่างมุมล่างซ้าย
2 %
สำหรับกำหนดรูปร่างมุมล่างซ้ายเป็นเปอร์เซ็นต์
3 เริ่มต้น
สำหรับการตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น
4 สืบทอด
เพื่อสืบทอดค่าคุณสมบัติหลัก

ตัวอย่าง

ให้เราดูตัวอย่างสำหรับคุณสมบัติ borderBottomLeftRadius -

<!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>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

HTML DOM สไตล์ borderBottomLeftRadius Property

เมื่อคลิกปุ่ม "เปลี่ยนขอบด้านล่าง" -

HTML DOM สไตล์ borderBottomLeftRadius Property