wordpress archive.php、category.php、tag.php 中的 PIE.htc 问题
我正在使用 PIE.htc 来处理 IE 中的 CSS3。 我将PIE.htc放在根目录中,并在css中使用behavior: url(PIE.htc)。
例如:
#content{
....
.....
behaviour: url(PIE.htc)
}
它在所有页面中都工作得很好,除了 PIE.htc 不知何故不会在category.php、archive.php 和 tag.php 中加载。
然后我决定通过覆盖每个 archive.php、category.php、tag.php 的 css 来更改 PIE.htc 的路径,如下所示:
#content{
behaviour: url(../PIE.htc)
}
它在 archive.php、category.php 的第一页中工作正常, tag.php,但是当我转到 archive.php、category.php、tag.php、PIE.htc 的下一页时,将不再加载。
我尝试使用行为更改路径: url(../../PIE.htc) 但没有成功。
如何解决wordpress中archive.php、category.php、tag.php的PIE.htc路径问题?
I'm using PIE.htc to handle CSS3 in IE.
I put PIE.htc in the root, and I use behavior: url(PIE.htc) in the css.
for excample:
#content{
....
.....
behaviour: url(PIE.htc)
}
It works just fine in all pages, except the PIE.htc somehow won't load in category.php, archive.php and tag.php.
Then I decided to change the path of my PIE.htc by overwrite the css of each archive.php, category.php, tag.php become like this:
#content{
behaviour: url(../PIE.htc)
}
It worked ok in the first page of my archive.php, category.php, tag.php, but when I go to the next pages of my archive.php, category.php, tag.php, PIE.htc won't load anymore.
I've tried to change the path with behaviour: url(../../PIE.htc) but didn't work.
How to solve this path issue of PIE.htc for archive.php, category.php, tag.php in wordpress?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用相对于站点根目录的 URI。这意味着它应该以斜线开头。例如,如果该文件位于名为 CSS 的目录中,并且该目录与 index.php 处于同一级别:
无论当前页面的 URL 是什么,它都引用相同的 URL。
Use a URI relative to the root of the site. That means it should start with a slash. For example, if the file is in a directory named CSS which is at the same level as index.php:
This refers to the same URL no matter what the URL of the current page is.