0

私の問題は:

私はこの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;
}

背景の画像で動作させる手がかりはありますか? 助けてくれてありがとう。

4

1 に答える 1

0

backgroundの代わりに持つつもりだったと思いますbackground-image

http://jsfiddle.net/e56Sp/

background: url("images/bg.jpg") center center no-repeat fixed;
于 2013-11-06T18:05:02.837 に答える