获取页脚停留在底部

时间:2009-06-07 20:23:24

标签: css html

我正在尝试使用CSS使页脚停留在底部 - 粘性页脚:

.wrapper {
  margin: 0 auto;
  padding: 0 0 0 0;
  width: 100%;
  text-align: left;
  background: #F5F5FF;
}

.page .footer {
  left: 0;
  width: 100%;
  min-width: 300px;
  position: fixed;
  margin-top: -150px;
}

.tfoot {
  background: #3E5C92;
  color: #E0E0F6;
}

.smallfont {
  font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}

这是事物的HTML:

<div class="wrapper">My stuff</div>
<div class="footer">
<div class="tfoot" align="left" style="padding:6px">
<div class="smallfont" style="float:right">
<a href="?app=about">About Extranet</a>&nbsp;<a href="?app=changelog">Changelog</a>&nbsp;</div>
<div style="color:white">
<small>Copyright &copy; 2009 Radon Systems&nbsp;|&nbsp;Shamil Nunhuck&nbsp;|&nbsp;<?php echo($product.'&nbsp;|&nbsp;'.$version.'&nbsp;|&nbsp;'.$build); ?>
</div></div></small></div>

但它根本没有坚持到底。怎么了?

3 个答案:

答案 0 :(得分:7)

尝试这种方法(它是我发现的唯一一种有效的方法):

http://www.cssstickyfooter.com/

答案 1 :(得分:4)

如果你想要例如.footer坚持到底,请尝试以下方法:

.footer { position:fixed; bottom:0; width:100%; height:110px;}

当然,我根据你的需要改变了宽度和高度。

希望这会有所帮助!!

答案 2 :(得分:1)

你没有底:设置。

Dup:HTML footer problem