主要是向 div 元素的四个角添加圆角边框:
实例如下:
<!DOCTYPE html> <html> <head> <style> div { border:2px solid; padding:10px; background:#dddddd; border-top-left-radius:1em; border-top-right-radius:1em; border-bottom-right-radius:1em; border-bottom-left-radius:1em; -webkit-border-top-left-radius:1em; /* Safari */ } </style> </head> <body> <div>border-top-left-radius 属性允许您向左上角添加圆角边框。</div> </body> </html>
时间: 2024-09-30 05:29:14