PHP前端开发

CSS border-bottom-right-radius 属性

百变鹏仔 4周前 (09-19) #CSS
文章标签 属性

使用border-bottom-right-radius属性来设置右下角的边框。您可以尝试运行以下代码来实现border-bottom-right-radius属性−

示例

实时演示

<html>   <head>      <style>         #rcorner {            border-radius: 25px;            border-bottom-right-radius: 45px;            background: orange;            padding: 20px;            width: 200px;            height: 150px;         }      </style>   </head>   <body>      <p id="rcorner">Rounded corners!</p>   </body></html>