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

จะกำหนดรูปร่างของเส้นขอบของมุมล่างขวาใน JavaScript DOM ได้อย่างไร


ในการกำหนดรูปร่างของเส้นขอบของมุมล่างขวาใน JavaScript ให้ใช้ 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>