大家好,我正在尝试添加一个 CSS 页脚,但它不能正常工作。现在我正在疯狂地调整它,如果它在 Firefox 中看起来很好,它会在 Internet Explorer 7 中变得一团糟,有时是页面的一半:(。有没有基于 css 的页脚的好例子。
考虑我的页面有一个固定的宽度,两列不同的高度,而我的页脚有 100% 的宽度。
好吧,我按原样使用 css 粘性页脚 - 它在 Firefox 中似乎工作正常,但使用 IE,我的页脚在页面的中间浮动。我注意到我的页脚挂在浏览器视口高度的底部。我认为它是 IE 如何将高度解释为 100% 的。css 粘性页脚本身可以正常工作,但是当我进行修改和添加时,它在 IE 中变得一团糟。页脚和页眉的基本代码如下:
@charset "utf-8";
/* CSS Document */
html, body, #wrap {height: 100%;}
body > #wrap > #main > #pageContent {height: auto !important; min-height: 100%;}
#main
{
background-color:#FFFFFF;
width:960px;
height:100% !important;
text-align:left;
position:relative;
}
#footer
{
display:block;
width:100%;
text-align:center;
position: relative;
height: 150px;
clear:both;
}
/* CLEAR FIX*/
.clearfix:after
{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix
{
display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
height: 1%;
}
.clearfix
{
display: block;
}
/* End hide from IE-mac */
HTML有点像这样
<div id="wrap">
<div> header is here</div>
<div id="main" class="clearfix">content is here </div>
</div>
<div id="footer"></div>
我在哪里搞砸了