您好 谁能告诉我为什么这个CSS不会在IE中显示png?非常感谢
#header
{
width:1004px;
height:309px;
float: left;
margin:0px;
padding:0px;
background-image::url(../images/header.png);
background-repeat:no-repeat;
}
答案 0 :(得分:2)
::url
试试这个:
#header
{
width:1004px;
height:309px;
float: left;
margin:0px;
padding:0px;
background-image:url(../images/header.png);
background-repeat:no-repeat;
}
答案 1 :(得分:0)
在firefox上使用firebug来查看问题所在,我假设因为你知道双冒号问题这可能不在你的样式表上所以问题可能在图像文件路径中,考虑到了css文件是,如果在sperate文件夹中你可能需要使用更多的“../”来回到页面所在的根目录并在css中相对调用图像