锚定在页面底部

时间:2012-03-13 14:37:27

标签: html footer

我将以下代码作为我网页的页脚。但是,使用IE9或Chrome,此页脚不会锚定到页面底部。我怎么能这样做?

由于

<body>
[...]
 <tfoot valign="bottom">
    <tr><td>All rights reserved</td></tr>
  </tfoot>
</body>

已修复:使用<div>代替<tfoot>

1 个答案:

答案 0 :(得分:1)

首先,您必须了解TFOOT需要成为TABLE元素的一部分,如下所述:http://www.w3.org/TR/html5-author/the-tfoot-element.html

其次,应用“valign”属性是指TFOOT元素的内容,而不是TFOOT元素本身。

您问题的真实答案?忘记使用TFOOT元素。我建议看看下面的问题和得到的答案:

How to anchor a DIV to the bottom of a page?