如何构建像facebook应用程序设计这样的固定页脚?css的例子很受欢迎.
像状态div一样重复Facebook
这里给出了一种方法:
在HTML中:
在CSS中:
#container { position:absolute; min-height:100%; } #content { margin-bottom:100px; /* same as footer height */ } #footer { position:absolute; bottom:0; height:100px; /* same as content margin-bottom */ }
编辑:该链接基于此,有一些例外