0

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

案例一:

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

案例二:

#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;
}

一旦我删除了“背景颜色”属性,就会显示图像。

4

1 回答 1

0

试试这段代码...

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

在背景图像之后使用背景颜色属性

于 2013-08-02T04:17:34.240 回答