如何设置 id 为 mainholder 的 div 来保存我的标题,并且所有数据都覆盖了 id 为 overmainholder 的 div?
我正在为我的全屏背景使用 Jquery Supersized。我尝试了所有方法,但带有标题等的 mainholder div 的反词超过了mainholder!
机身内部:
<div id="overmainholder"></div>
<div id="mainholder">
<div id="header"></div>
</div>
我的 CSS
#mainholder{
width:1051px;
height:700px;
margin:0 auto;
z-index:100;
}
#overmainholder{
width:100%;
height:202px;
position: absolute;
top:0;
left:0;
float:left;
z-index:2;
background-image:url(../images/bodybg.jpg);
background-repeat:repeat-x;
}
#header{
width:1051px;
height:202px;
background-image:url(../images/headerbg.jpg);
background-repeat:no-repeat;
z-index:101;
}