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

ตั้งค่าเส้นขอบมุมล่างขวาด้วย CSS


ใช้ border-bottom-right-radius คุณสมบัติสำหรับกำหนดเส้นขอบของมุมล่างขวา คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้คุณสมบัติ border-bottom-right-radius

ตัวอย่าง

<html>
   <head>
      <style>
         #rcorner {
            border-radius: 25px;
            border-bottom-right-radius: 90px;
            background: #F5CBA7;
            padding: 20px;
            width: 400px;
            height: 300px;
         }
      </style>
   </head>
   <body>
      <p id = "rcorner">Rounded border bottom corner!</p>
   </body>
</html>