body{
background:url('图片路径/bg.jpg') repeat
width: 1100px
height: 1000px
}
就ok了
"width:950px"这里错了,要改正,不然margin:0 auto不起作用﹟header设置宽度950px,应为头部,不用浮动.去掉float:left
#sidebar,#content最好加display:inline减少浮动带来的bug,
使用float后要闭合.使用clear:both
建议在#sidebar,#content上层加个div.
像这样:<div class="fn-clear"><div id="sidebar"></div><div id="content"></div></div>
/* 清理浮动 */
.fn-clear:after {
visibility:hidden
display:block
font-size:0
content:" "
clear:both
height:0
}
.fn-clear {
zoom:1/* for IE6 IE7 */
}
希望能解决