私の問題は:
私はこのHTMLを手に入れました:
<div id="UNDER">
</div>
<div id="OVER">
</div>
そしてこのCSS:
#UNDER
{
width: 100%;
height: 10vh;
background-color: #004;
position: fixed;
z-index: 50;
}
#OVER
{
width: 100%;
height: 100vh;
background: url("images/bg.jpg") center center no-repeat fixed;
background-size: cover;
position: relative;
z-index: 9000;
}
しかし、背景画像は下にあり、終わっていません。
background-color の代わりに background-color を使用して、同じコードを試してみましたが、動作しています!
#UNDER
{
width: 100%;
height: 10vh;
background-color: #004;
position: fixed;
z-index: 50;
}
#OVER
{
width: 100%;
height: 100vh;
background-color: #009;
position: relative;
z-index: 9000;
}
背景の画像で動作させる手がかりはありますか? 助けてくれてありがとう。