png文件未在IE中显示

时间:2011-04-29 21:21:04

标签: css

您好 谁能告诉我为什么这个CSS不会在IE中显示png?非常感谢

#header
    {
        width:1004px;
        height:309px;
        float: left;
        margin:0px;
        padding:0px;
        background-image::url(../images/header.png);
        background-repeat:no-repeat;
    }

2 个答案:

答案 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中相对调用图像

相关问题