当我的页面在IE(7,8)中加载时,我的左侧列中的背景图像在CSS3 Pie开始之前显示了一瞬间,将边框添加到它想要的li元素,然后从中删除背景图像我的列表项目就像这样...
在FF中,如果您想看看它的外观是什么,这是有效的。如果有人有这个,我会很感激。非常感谢!
答案 0 :(得分:1)
在某些情况下,CSS中的绝对图像链接也可以起作用。
像:
#yourdiv{
behavior:url(css/PIE.htc);
-pie-background:
url(permalink-here/your-image.png) right no-repeat,
url(permalink-here/your-image.png) left no-repeat;
}
答案 1 :(得分:0)
我怀疑问题是这样的:Pie为边框生成的元素具有比具有背景图像的原始元素更高的z-index。
尝试给予
#content-left ul li a{position:relative;}
或尝试其他建议的解决方案here