【发布时间】:2011-08-12 03:58:23
【问题描述】:
可能的重复:
CSS Rounded corners.
What is the best way to create rounded corners using CSS?
有人可以给我css代码来使我的角落变得圆润吗?请...
【问题讨论】:
标签: css
可能的重复:
CSS Rounded corners.
What is the best way to create rounded corners using CSS?
有人可以给我css代码来使我的角落变得圆润吗?请...
【问题讨论】:
标签: css
.round {-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #EEFF99;
behavior: url(/PIE.htc);
【讨论】:
这适用于大多数现代浏览器
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
【讨论】:
为不支持更高 CSS 的浏览器使用圆角图像以实现向后兼容性
【讨论】: