我在我的 css 文件的 body{} 中设置了我的主页的背景图像。这是我的第一个错误吗?
body{
background-image:url('img/bg-white.png');
width:100%;
height:100%;
margin: 0 auto;
}
我想为我的页脚创建一个背景图像。所以我将它添加到 CSS 的底部
#footer-background{
background-image:url('img/footer-background.jpg');
z-index:1;
}
它没有出现。是否与原始背景重叠?或者还有更多?