我創建了一個白色的網站,所以我沒有任何背景分配。但我想在網站的兩個部分添加一些藍色漸變細節。 #bg_top應放置在左上方,並且#bg_bottom應放置在右下方。當然,這是行不通的正是我想要的方式......div與包裝後面的圖像不工作
這是怎麼了我的html顯示:
<body>
<div id="bg_top"></div>
<div id="wrapper">
</div>
<div id="bg_bottom">
</div>
<footer>
</footer>
的#bg_top完美的作品。它在包裝後顯示自己,但bg_bottom給我的問題是它的位置很好,但它在包裝和頁腳之間的視覺效果。因此我使用了z-index但它也不起作用。另外奇怪的是底部和左側參數沒有任何區別。這是CSS代碼:
#wrapper{
width: 925px;
height: 1355px;
margin-left: auto;
margin-right: auto;
position: relative;
}
#bg_top{
width: 500px;
height: 500px;
position: absolute;
top: 0px;
left: 0px;
background-image: url('../_img/2_body/bg/bg_top.jpg');
z-index: -1;
}
#bg_bottom{
width: 500px;
height: 500px;
position: relative;
float: right;
bottom: 0px;
right: 0px;
background-image: url('../_img/2_body/bg/bg_under.jpg');
z-index: -1;
}
有人能幫助我嗎?我用盡了一切......
謝謝
我認爲你在真實頁面中有一個'