我知道整个网络上都有一百万个圆角线程,我已经做了研究,尝试了PIE.htc方法,但是没有运气。由于某种原因,根据BrowserLab,它甚至在IE9中也不起作用。

使用IE9的任何人都可以为我确认吗?我在Mac上。

http://heyimart.com/clients/index.html

这是我用来制作圆角的CSS代码。

-webkit-border-top-right-radius: 120px;
-webkit-border-bottom-left-radius: 120px;
-webkit-border-radius: 0px 120px 0px 120px;
-moz-border-radius-topright: 120px;
-moz-border-radius-bottomleft: 120px;
-moz-border-radius: 0px 120px 0px 120px;
border-top-right-radius: 120px;
border-bottom-left-radius: 120px;
border-radius: 0px 120px 0px 120px;

-webkit-box-shadow: #666 0px 0px 10px;
-moz-box-shadow: #666 0px 0px 10px;
box-shadow: #666 0px 0px 10px;
behavior: url(clients/PIE.htc);


谢谢,
艺术

最佳答案

behavior中的URL应相对于服务器根目录。

更改为:

behavior: url(clients/PIE.htc);

关于internet-explorer - IE圆 Angular ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9789698/

10-12 12:38