在我的page上,主要内容重叠在页脚上。这只发生在IE7中。它在ie8,ff,chrome中工作正常。关于问题是什么的任何想法?
感谢。
答案 0 :(得分:3)
IE9.js
试图强迫IE 7尊重实际上错误的height: 100%
声明。
您的内容的高度应设置为auto
而不是100%
,因为您不希望它是容器高度的100%,您希望它适合您的所有内容。
以下是main_red.css
中的修改(我只包含了修改过的部分)。
第26行:
#content_container
{
background:url(../assets/images/main-layout/logo_bg_red.gif);
height:auto;
}
#inner_content_container
{
background:url(../assets/images/main-layout/content_bg_red.gif) repeat-y center;
height:auto;
}
第231行:
#content
{
padding-top:2px;
height:auto;
background-color:#FFFFFF;
}