IE 中使用边框半径的圆角
我使用以下边框半径代码创建了一个网站: http://code.google.com /p/curved-corner/
我引用 url(border-radius.htc) 使其在 IE 中工作,但事实并非如此。
请帮忙,谢谢。
PS 这是该网站,请随意查看我的 css: http://portsmouth.fitfans.co.uk
I've made a site using this border radius code: http://code.google.com/p/curved-corner/
I'm referencing to url(border-radius.htc) to make it work in IE but it is not.
Please help, thanks.
P.S. Here's the site so feel free to look at my css: http://portsmouth.fitfans.co.uk
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用css3pie。它非常简单且有用。
编辑:如果弯角的工作方式与 css3pie 类似,则路径是相对于正在查看的 HTML 文件,而不是相对于调用它的 CSS 文件。
因此,在您的CSS中,您必须将当前的
behavior:url(border-radius.htc);
的路径修复为behavior:url(themes/hull/css/border-radius.htc );
you can try to use css3pie. It is very easy and useful.
edit: if the curved-corner works similar to css3pie the path is relative to the HTML file being viewed, not the CSS file it is called from.
So in your css you have to fix the path of your current
behavior:url(border-radius.htc);
tobehavior:url(themes/hull/css/border-radius.htc);