gpt4 book ai didi

css - 底部带有 ajax 加载内容的页脚

转载 作者:行者123 更新时间:2023-11-28 15:40:38 25 4
gpt4 key购买 nike

我有这个 html 结构,该部分基本上是我的主要内容:

<html>
<head>
<body>
<nav id="primary">
<nav id="secondary">
<section id="maincontainer">
<div id="main">...</div>
<footer>
<div class="footer-inner">...</div>
</footer>
</section>
</body>
</html>

在 ID 为“main”的 div 中,内容通过 ajax 动态加载,因此高度可以变化。我需要页脚始终位于底部,即使对于几乎没有任何内容未填充页面高度的子页面也是如此。目前我有页脚的绝对位置,这对动态内容页面不起作用,页脚卡在内容的中间(原始窗口高度位置)。

有没有办法只做这个CSS?谢谢!

最佳答案

这样做

<footer style="position: fixed; bottom: 0; width: 100%;"> </footer>

您还可以阅读有关 flex 的内容所有现代浏览器都支持它

更新:我阅读了有关 flex 的信息并进行了尝试。它对我有用。希望它对你也一样。这是我的实现方式。这里的 main 不是 ID,它是 <main>

body {
margin: 0;
display: flex;
min-height: 100vh;
flex-direction: column;
}

main {
display: block;
flex: 1 0 auto;
}

在这里您可以阅读更多关于 flex https://css-tricks.com/snippets/css/a-guide-to-flexbox/ 的信息

请记住,旧版本的 IE 不支持它。

关于css - 底部带有 ajax 加载内容的页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43911921/

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