我的内容有两种情况
1)我的内容不多,所以我希望页面底部有页脚。
2)我有很多内容,我想要所有内容后的页脚(即不是粘性页脚)。
我尝试使用CSS,但我认为因为我有一些图像和文字浮动我无法让它工作。
我可以使用javascript修复页脚问题吗?
答案 0 :(得分:2)
这是我遇到过的那种最强大(非常简单)的页脚:
http://ryanfait.com/sticky-footer/
在不同项目中成功使用 - 经过IE6测试,可在所有现代浏览器中独立于所有其他内容使用。
答案 1 :(得分:2)
试试这个
<强> CSS 强>
body, html{
padding:0;
margin:0;
height:100%;
}
.wrapper{
min-height:100%;
position:relative;
}
.container{
width:960px;
margin:0 auto;
padding-bottom:100px;
}
.header{
height:100px;
background-color:#066;
}
.footer{
position:absolute;
bottom:0;
height:100px;
background-color:#006;
width:100%;
}
<强> HTML 强>
<div class="wrapper">
<div class="container">
<div class="header">
Header
</div>
<div class="body">
</div>
</div>
<div class="footer">
Footer
</div>
</div>
答案 2 :(得分:0)
在页面内容上使用min-height
。如果没有很多更改,它将仅适用于正常的屏幕分辨率(因为您将在px中指定min-height
),但通常只需将页脚按下min-height
像素的正常量是完美的。
答案 3 :(得分:0)
我认为这是最短的方式:
<强> HTML:强>
<html>
<body>
<div id="header">
</div>
<div id="content">
</div>
<div id="footer">
</div>
</body>
</html>
<强> CSS 强>
html,body{
width:100%;
height:100%;
}
#header{
height:100px;
background-color:#00ff00;
width:100%;
}
#content{
width:100%;
border:1px solid red;
min-height:calc(100% - 200px);
min-height:-moz-calc(100% - 200px);
min-height:-webkit-calc(100% - 200px);
min-height:-o-calc(100% - 200px);
}
#footer{
height:100px;
background-color:#0000ff;
width:100%;
}