フルスクリーン カバーの背景があり、その上にフッターを配置して背景を暗くしようとしています。ただし、その上に写真を配置する必要もあり、暗くなります。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%;
}
どんな助けでも大歓迎です。
編集:
z-indexをまったく使用せずに、上に別のdiv要素を負のマージンで追加するだけで解決できました
<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;}