老年新手 请教DIV布局问题
为什么页脚会跑上去呢?如图
<title> 固定宽带且剧中页面</title>
<style>
body {padding:0; margin:0; text-align:center;}
#main {width:800px; padding:0; margin:0 auto; background:#900}
#header { width:100%; height:100px; background:#06F}
#left { float:left; width:300px; background:#936}
#right { float:right; width:500px; background:#366}
#foot {background:#90F; clear:both;;width:100%; height:50px}
</style>
<body>
<div id="main">
<div id="header">
</div>
<div id="left">
<p>A</p>
<p>B</p>
<p> </p>
</div>
<div id="right">
<p>1</p>
<p>2</p>
<p>3 </p>
<p>4</p>
<p>5</p>
</div>
<div if="foot">
这是我的脚
</div>
</div>
</body>
------解决方案--------------------你说的页脚是?
我试了下效果没错啊?