PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

CSS border-bottom-right-radius 属性

王林
王林 转载
2023-09-16 11:37:02 873浏览

CSS border-bottom-right-radius 属性

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

以上就是CSS border-bottom-right-radius 属性的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:tutorialspoint,如有侵犯,请联系admin@php.cn删除