我一直在开发一个具有非常标准的布局、页眉、内容、页脚的网站,每个都是一个在页面范围的 DIV 内具有 900px 宽度的 DIV,就像在这个问题中描述的那样:
现在问题本身是,每当浏览器窗口的宽度小于指定的 DIV 宽度(900 像素)时,包装器的背景似乎就会消失,显示网站本身的背景颜色。使用上述问题中的代码时也会发生这种情况。
这是CSS代码:
#headerwrapper {
height: 229px;
background: url(imagenes/header.gif);
background-repeat: repeat;}
#header {
width:900px;
height:229px;
padding:0px;
margin:0 auto;
}
这是HTML代码:
<div id="headerwrapper">
<div id="header">
Content goes here.
</div>
</div>
任何建议表示赞赏。