页脚位置 - 底部和中心
我正在编写一个网页,页面底部有固定页脚。页面的内容具有特定的宽度并且居中。页脚也有特定的宽度并且必须居中。
问题:
- 我无法使用
postiton:fixed
- 页脚未居中 - 页面内容是从数据库动态加载的,因此我无法知道确切的高度
- 如果浏览器窗口非常小,页脚会碰到内容并涵盖它。
z-index
很难解决这个问题,因为我在背景上设置了一个渐变,就像身体背景一样。
所以我需要像 float:bottom
这样的东西......
I am writing a webpage with a fixed footer on the bottom of the page. The content of the page has a specific width and is centered. The footer also has a specific width and must be centered.
Issues:
- I cant use
postiton: fixed
- footer is not centered - Page content is loaded dynamically from a database, so I can't know the exact height
- If the browser window is very small, the footer hits the content and covers it. A
z-index
hardly fixes it because I have a gradient on the background set like a body background.
So I would need something like float: bottom
....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尽管其他答案确实有效,但您应该避免使用负边距。
试试这个:
HTML 将是:
---------- 编辑 ------------
您还应该修改整个页面的大小,以考虑到你的页脚 - 否则你将永远不会看到底部内容
Although the other answers do work, you should avoid using negative margins.
Try this:
And the HTML would be:
---------- Edit ------------
You should also ammend your over all page size, as to take into consideration the height of your footer - otherwise you will never see the bottom content
检查工作示例 http://jsfiddle.net/qdVbR/
Check working example at http://jsfiddle.net/qdVbR/