这里是我的页脚的CSS:
.footer {
background-color: #CACACA;
font-size: 20px;
height: 50px;
padding-top: 10px;
position: absolute;
text-align: center;
width: 100%;
}
在多个页面上我有容器的内容文本。 在某些页面存在只是页脚出现在页面的末尾足够的内容。 但在某些情况下,没有足够的内容,因此页脚仍然显示容器下,但有和页面的最后那之间的间隙。 我怎样才能解决这个问题,无论所以调整容器的长度?
像这样
<!DOCTYPE html>
<html>
<head>
<title>My Amazing Footer</title>
<style>
html, body {
margin:0;
padding:0;
height:100%;
}
.wrapper {
min-height:100%;
position:relative;
}
footer{
background:#F1F1F1;
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
height:300px;
}
footer p{
text-align: center;
padding-top:100px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="Content">
<p>HTML Ipsum Presents</p>
</div>
<footer>
<p>© My Website 2013. All Rights Reserved!</p>
</footer>
</div>
</body>
</html>
看到我们在包装的页脚和页脚是绝对的底部和左侧包装的,然后我们刚才添加的页脚包装底部填充,并在包装和身体的一些默认高度的高度,而这排序,取旁观的jsfiddle在这里- http://jsfiddle.net/eTwJh/2/这里是一个没有内容- http://jsfiddle.net/eTwJh/3/
没有看到相应的HTML,这是一个有点很难猜测你的问题可能是什么。 这听起来像有对下行的推页面底部过去页脚时,有这么主体部分内只有有限的内容您的主要内容的底部边缘。
为了解决这个问题,无论是调整该保证金或者更改页脚的定位。 此刻,位置是绝对的,这意味着该页脚被定位基于HTML中的它的父元素。 切换的定位相对会使其元素只是无论之后在HTML时逢前。
我建议你阅读更多关于CSS的定位想在这个问题上进一步开展工作之前。
文章来源: How do I make sure that my footer shows all the way at end of the page rather than in the middle?