gpt4 book ai didi

javascript - 粘性页脚,以及没有特定高度的滚动 div

转载 作者:太空狗 更新时间:2023-10-29 12:37:49 24 4
gpt4 key购买 nike

我想要一个带有粘性页脚的页面,我希望它上面的内容可以滚动,同时保持页脚的粘性。但我不想对内容区域的高度进行硬编码,而是希望它的高度是所有可用的高度,除了页脚的高度。

从长远来看,如果重新调整窗口大小,我什至希望可以重新调整可滚动内容区域的高度,但我已经超前了。我假设我需要结合使用 CSS 和 Javascript 来实现这一点,单靠 CSS 无法实现吗?

当然,我研究过并找到了 CSS 溢出属性,但我的 CSS 总体上不是很好 :( 下面是我根据 ryanfait.com 的粘性页脚教程拼凑的一些 CSS/HTML,如果有人可以以此为起点给我一些建议。请记住,我将需要直接的 Javascript,而不是 jQuery,因为这将用于自定义浏览器 (http://tkhtml.tcl.tk/hv3.html)。虽然我的 Javascript 与我的 CSS 不同,但它非常好,因此将特定 CSS 建议与一般 Javascript 建议(我随后会充实)相结合的答案将是理想的。

<html>
<head>
<style>
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
}
.footer, .push {
height: 4em;
}
</style>
</head>
<body>
<div class="wrapper">
<p>Your website content here.</p>
<div class="push"></div>
</div>
<div class="footer">
<p>Copyright (c) 2008</p>
</div>
</body>
</html>

编辑:我根据前两个答案尝试过的内容:

我根据目前收到的两个答案的部分内容对 CSS 进行了以下修改:

<style>
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
overflow-y: scroll;
}
.footer {
bottom: 0;
height: 4em;
position: fixed;
}
</style>

这在 Chrome 中给我的是 两个 滚动条,一个非常微弱,但更突出的滚动条仍然允许内容溢出(也许我使用的术语不正确?)在包装区域之外, 以及页脚的顶部(或底部),加上整个正文的外部。感谢您帮助取得进展,但我仍然需要很多帮助。这是我所看到的屏幕截图的链接;我用了http://www.ipsum-generator.com/生成所有内容。

http://dl.dropbox.com/u/44728447/dynamic_wrapper_sticky_footer.JPG

最佳答案

html, body {
height:100%;
overflow:hidden;
}
.wrapper {
overflow-y:scroll;
height: 90%;
}
.footer {
position:static;
bottom: 0;
height: 10%;
}

演示:http://jsfiddle.net/vfSM3/

关于javascript - 粘性页脚,以及没有特定高度的滚动 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7747802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com