可能重复:
CSS Rounded corners.
What is the best way to create rounded corners using CSS?
有人可以给我一些css代码让我的角落四舍五入。 PLS ...
答案 0 :(得分:2)
.round {-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #EEFF99;
behavior: url(/PIE.htc);
答案 1 :(得分:2)
这适用于大多数现代浏览器
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
答案 2 :(得分:1)
将图像用于圆角以实现向后兼容