我有一个 body 的背景图像和一个包装 div 的背景颜色。我没有为 body 设置任何高度,我使用 min-height:1000px 进行包装。但如果 wrapper 高度扩展 1000px;,则 wrapper 的背景颜色为 body 背景图像。HTML 代码:
<body>
<div id="wrapper">
<div id="header">
<div id="headercontainer">
<div id="company"></div>
<div id="tagline"></div>
<div id="navigation"></div>
</div>
</div>
<div id="pagecontainer1"></div>
<div id="footer1"></div>
</div>
这是CSS:
body{
background:#E8EDF0;
margin:0;
width:100%;
background-image: url(http://l1.yimg.com/a/i/ww/met/th/slate/gsprite_pg_slate_20100521.png);
background-repeat: repeat-x;
background-position: 0px -2335px;}
#wrapper{
background-color:#FFF;
min-height:1000px;
width:1008px;
margin:auto;
position:relative;
overflow:visible;
}
我怎样才能解决这个包装器的背景颜色问题。