IE6下有个BUG
只要在有padding-top的元素内 有<div class="clear"></div> 那就会出现双倍PADDING的 BUG
CSS
.clear {clear: both;}
解决办法需要在.clear的CSS里加overflow:hidden;height:0;
.clear {clear: both;overflow:hidden;height:0;}