0

我在使用 jquery 手风琴的网站中有几个页面。在 IE7 以外的浏览器中,一切正常。在 IE7 中,页面上的页脚停留在最初绘制的位置(除非重新调整浏览器窗口的大小)。When selecting another tab with a different number of accordions or minimizing an accordion, the footer does not stick to the bottom of the container. 如果内容扩展,则扩展的容器位于页脚下方,并且用户无法与该区域交互......如果内容缩小,页脚将停留在最初绘制的位置......

当手风琴改变内容区域的高度时,如何让页脚在 IE7 中粘贴?

页面链接(“项目”很大,我的云被禁用,“奖励”链接更快)

http://iliveinyourhead.net/awards

http://iliveinyourhead.net/projects

非常感谢任何帮助...谢谢。

4

1 回答 1

0

好吧,我可以通过更改以下内容在 IE 兼容模式下解决此问题:

footer { 
    display: block;
}

footer {
    [if lt IE 8] display: inline;
    [if gt IE 7] display: block;
    [if ! IE] display: block; 
}
于 2013-05-29T18:07:04.033 回答