DIV+CSS问题

2024-11-17 21:33:43
推荐回答(1个)
回答1:

第一个问题:把侧边栏和主题内容的margin:0 auto;去掉

#Sidebar{ width:30%; float:left; height:400px; background:#0F0;}
#MainBody{ width:70%; float:right; height:400px; background:#F33;}

第二个问题:底部footer加上一句清除浮动:clear:both;

/*页面底部*/
#Footer {
width: 100%;
margin: 1 auto;
height: 200px;
background: #00FFFF;
color: #D6D6D6;
clear:both;
}


你调试下,问题应该可以解决,希望帮助到你!