在 CSS 中为 body 或文本添加特别颜色的角
CSS3 圆角用于通过使用 border-radius 属性为 body 或文本添加特殊颜色的角。
示例
<html> <head> <style> #rcorner { border-radius: 25px; background: #8AC007; padding: 20px; width: 200px; height: 150px; } </style> </head> <body> <p id="rcorner">Rounded corners!</p> </body> </html>
广告