使用 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>

更新时间: 2020 年 6 月 25 日

231 次浏览

开启你的 职业生涯

完成课程认证

开始学习
广告