0

我在根目录中有 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 中不起作用。

任何帮助将不胜感激。

4

2 回答 2

0

当在外部 css 文件中包含资源时,URL 是相对于 css 文件的。

如果您想包含来自不同目录的内容,您可以使用相对路径(示例behavior:url('../PIE.htc'))或使用绝对路径(示例behavior:url('/PIE.htc')

有关样式表中路径的更多信息 -在 CSS 文件中使用相对 URL,它相对于什么位置?

于 2013-02-14T15:23:57.747 回答
0

除了 pie.htc 工作的正确路径之外,请给出:

 #credits-earned
 { position: relative;
 }
于 2013-11-19T12:14:31.680 回答