1

我在我的 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;
}

它没有出现。是否与原始背景重叠?或者还有更多?

4

1 回答 1

3

这只是在黑暗中拍摄,需要更多信息才能得出结论性答案,但可能是您没有为页脚指定高度或宽度。

工作示例

#footer-background{
    background-image:url('img/footer-background.jpg');
    z-index:1;
    height:200px;
    width:100%;
}
于 2013-07-25T00:49:09.973 回答