ASP.net 4.0 母版页页脚 Div

发布于 2024-12-03 06:06:12 字数 94 浏览 2 评论 0原文

当母版页解析内容时,div始终位于最底部。那么我如何在不使用绝对位置的情况下将页脚设置在底部。如果您使用绝对位置,则必须根据我不想要的设置每个不同的页面高度和页脚位置。谢谢。

When master page parsed content div always is at the very bottom. So how i can set footer to be at the bottom while not using position absolute. If you use position absolute you have to set every different page height and footer position according to the this is which i don't want. Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空心空情空意 2024-12-10 06:06:12

最实用的解决方案是在 CSS 中将页眉和页脚之间的主要内容区域的最小高度设置为 700 像素左右。

或者,您可以尝试此操作(但尚未在现代浏览器中进行测试):
http://codersbarn.com /post/2008/09/10/CSS-Sticky-Footer-for-ASPNET-Master-Page.aspx

The most practical solution is to set a min-height in your CSS of around 700px for the main content area between header and footer.

Alternatively, you could try this (but not tested yet in modern browsers):
http://codersbarn.com/post/2008/09/10/CSS-Sticky-Footer-for-ASPNET-Master-Page.aspx

冷︶言冷语的世界 2024-12-10 06:06:12

这是我最近需要在一个项目中实现的东西。
查看以下 jsFiddle: http://jsfiddle.net/uHZgY/


编辑(基于评论)

如果您需要的是浮动页脚,请查看另一个 SO 问题:如何让浮动页脚粘在 IE 6 中的视口底部?

正确的答案实现了这一点,而不需要对主要内容进行绝对定位。

我已经采取了正确的答案并为您创建了一个 jsFiddle 以便您可以查看。

http://jsfiddle.net/mStef/

This is something I needed to implement recently on a project.
Checkout the following jsFiddle: http://jsfiddle.net/uHZgY/


Edit (Based on comment)

If what you require is a floating footer, then checkout this other SO question: How do I get a floating footer to stick to the bottom of the viewport in IE 6?.

The correct answer implements this without the need for absolute positioning of the main content.

I have taken the correct answer and created a jsFiddle for you so you can check it out.

http://jsfiddle.net/mStef/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文