我会创建一个白色的网站,因此,我有自己的背景。 但我想在网站的两个部分补充一些蓝梯度细节。 #bg_top将上下至左上,pbg_bottom应当上下至右上。 当然,这并不是我想要的方式。
This is how its displayed on my html:
<body>
<div id="bg_top"></div>
<div id="wrapper">
</div>
<div id="bg_bottom">
</div>
<footer>
</footer>
#bg_topwork是完美的。 它确实展示了包装后,但肉体正给我问题,把它当作它所处位置,而是视像在包装人和鞋子之间。 因此,我使用了z-index,但也没有工作。 奇怪的是,底部和左侧的胎盘造成任何变化。 《社会保障法》是:
#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;
}
有些人能否帮助我? 我尝试了一切......
感谢