我在根目录中有PIE.HTC,并尝试在Internet Explorer中使用圆角
这是我的CSS
#credits-earned
{
border-style:solid;
border-width:2px;
border-color:#EDEDED;
width:170px;
height:60px;
margin-bottom:10px;
font-weight: bold;
border-radius:8px;
behavior: url (PIE.htc);
}
这是试图生效的HTML是:
<div id="credits-earned">
You need to earn X<br> more credits today to avoid losing credits
</div>
然而圆角在IE中不起作用。
感谢任何帮助。
答案 0 :(得分:0)
在外部css文件中包含资源时,URL相对于css文件。
如果要包含来自不同目录的内容,可以使用相对路径(例如behavior:url('../PIE.htc')
)或使用绝对路径(例如behavior:url('/PIE.htc')
)
了解更多关于样式表中路径的信息 - Using relative URL in CSS file, what location is it relative to?
答案 1 :(得分:0)
除了pie.htc正常工作的路径外,请提供:
#credits-earned
{ position: relative;
}