我有一个全屏封面背景,我试图在它上面加一个页脚,使背景变暗。但是我还需要在它上面放一张图片,它也会变暗。我尝试使用 z-index 和具有透明度的切片图像,但它只是蓝色的,它不起作用。
#footer {
height: 100px;
opacity: 0.4;
background-color: #000000;
}
html {
background: url(background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100%;
width: 100%;
}
非常感谢任何帮助。
编辑:
我可以通过在上面添加另一个带有负边距的 div 元素来解决它,而根本不使用 z-index
<div id="footer">
</div>
<div id="footer-main">
<img src="uqu-logo.png">
<p>Got question? Check our <a href="#">FAQ</a></p>
</div>
和 CSS
#footer {
height: 100px;
opacity: 0.4;
background-color: #000000;
background-image: url('footer-bkg.png');}
#footer-main {
left: 50%;
margin-left: -567px;
margin-top: -82px;
position: absolute;
color: white;}