gpt4 book ai didi

html - 响应式背景图像覆盖内容

转载 作者:太空宇宙 更新时间:2023-11-04 12:16:49 27 4
gpt4 key购买 nike

我有以下代码: http://jsfiddle.net/xyoes1wy/

我遇到了一个问题,即 footer 中的图像覆盖了我的主体内容。是什么原因造成的?我该如何解决这个问题?

CSS:

.container {
background-image:url('http://www.imagesman.com/wp-content/uploads/2015/01/Landscape-wallpapers-1.jpeg');
background-size:100%;
position: absolute;
width:100%;
height:100%;
bottom: 0;
left: 0;
background-position:bottom center;
background-repeat:no-repeat;
}

#content {
z-index:2;
height:700px
}

最佳答案

您需要添加 position:relative 到 #content 元素,z-index 才能正常工作。

#content {
position:relative;
z-index:2;
height:700
}

关于html - 响应式背景图像覆盖内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28644401/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com