same height
by Justin Chen
HTML
<div id="main">左边栏的CSS:
<p>1号广告位坑</p>
<p>2号广告位坑</p>
<p>3号广告位坑</p>
<p>4号广告位坑</p>
</div>
<div id="aside">
右边栏的CSS:
</div>
CSS
body{width:200px;height:auto;overflow:hidden;}
#main{width:100px;margin-bottom:-10000px;padding-bottom:10000px;background:#eee;float:left;}
#aside{width:100px;margin-bottom:-10000px;padding-bottom:10000px;background:#bbb;float:right;}