使用 CSS 设置左上角边框
使用 border-top-left-radius 属性设置左上角的边框。你可以尝试运行以下代码来实现 border-left-radius 属性
示例
<html> <head> <style> #rcorner { border-radius: 25px; border-top-left-radius: 45px; background: #FADBD8; padding: 20px; width: 300px; height: 150px; } </style> </head> <body> <p id = "rcorner">Rounded top-left corner!</p> </body> </html>
广告