我正在处理标题中“两行”必须重复水平
和页脚的网站,
我已经为这两行制作了背景重复图像
如何使“第二个背景重复图像”位置与“页脚 div”位置相同..
实际上,我将顶部的两行设置为一个“背景重复图像”...
HTML 代码:
<body>
<div id="websiteContents">
<div id="header">
<div id="headerLine"></div>
contents
<div id="headerLine_down"></div>
</div>
vary contents
<div class="footer">
<a href="#">Home</a>
<a href="#">about</a>
<a href="#">contact us</a>
</div>
</div>
</body>
CSS 代码:
body {
background: url(../images/standard/repeat_header.png) #FFF repeat-x 0 165px;
}
#websiteContents {
width: 1150px;
margin: 0 auto;
}
#headerLine {
width: 1150px;
height: 4px;
background-color: #647193;
float: left;
margin-top: 14px;
}
#headerLine_down {
width: 1150px;
height: 9px;
background-color: #2B303E;
}
.footer {
width: 1150px;
background-color: #2A2F3D;
other styles...
}
网站太大了,如果你想要完整的代码,我会给你
谢谢你们