如果也使用背景颜色,则不显示背景图像

时间:2013-08-02 04:02:31

标签: css background background-image background-color

当我在本地运行的各种浏览器(虚拟服务器上的Apache)上测试时 - 一切都很好,但是一旦我通过主机上的FTP上传它 - 如果还设置了背景颜色,则不会显示背景图像:

案例编号1:

body {
font-family: Candara, Tahoma, Verdana;
font-size: 0.9em;
color: white;
background: #242424 url("/Images/background.png") no-repeat top center;
}

案例2:

#top {
position: relative;
border-radius: 5px;
text-align: left;
background-color: #CC0000;
background-image: url("/Images/sky_banner.png");
background-position: top;
background-repeat: no-repeat;
height: 200px;
}

.top-content {
position: absolute;
bottom: 0;
left: 0;
}

删除'background-color'属性后,将显示图像。

1 个答案:

答案 0 :(得分:0)

尝试此代码......

element{
    background-image:url(background.png.png);
    background-repeat:no-repeat;
    background-color:#242424;
    background-position: top center;
}

在background-image

之后使用background-color属性