什么是css代码使我的角落圆?

时间:2011-04-25 06:37:34

标签: css

  

可能重复:
  CSS Rounded corners.
  What is the best way to create rounded corners using CSS?

有人可以给我一些css代码让我的角落四舍五入。 PLS ...

3 个答案:

答案 0 :(得分:2)

.round {-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
background: #EEFF99;
behavior: url(/PIE.htc);

http://css3pie.com/

答案 1 :(得分:2)

这适用于大多数现代浏览器

-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;

http://border-radius.com/

答案 2 :(得分:1)

对于不支持更高版本的浏览器

将图像用于圆角以实现向后兼容