请看这里http://sources.freehosting.bg/1st-level.html
当页面在窗口中"最小化"时,页脚与上述内容重叠。我已经试着解决这个问题好几个小时了,但没有成功。
最大化:http://store.picbg.net/pubpic/99/2A/db640a6f9063992a.PNG最小化:http://store.picbg.net/pubpic/E4/96/2c1e86018b7be496.PNG
漂浮物被清除了,我不知道是什么原因造成的。请帮我解决…
您的setHeights
导致了问题,它将#content
和主.main
的高度设置为小于其内容,因此它溢出,如果您去掉-20
,它似乎可以工作,但为什么要以任何方式设置高度,因为它会随其内容扩展。
function setHeights() {
var newHeight=$(document).height() - 290;
$('#content').height(newHeight);
$('.main').height(newHeight/*-20*/);
}
您需要从CSS中的#footer
中删除margin-top: -30px
。