当我在本地运行的各种浏览器(虚拟服务器上的 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;
}
一旦我删除了“背景颜色”属性,就会显示图像。