gpt4 book ai didi

html - 绝对定位的 div float 在主要内容上

转载 作者:行者123 更新时间:2023-11-28 18:54:24 26 4
gpt4 key购买 nike

我绝对在浏览器窗口的底部放置一个页脚,使用以下代码:

HTML

<html>
<body>
<div id="content">
Content
</div>
<div id="footer">
Footer
</div>
</body>
</html>

CSS

#content {
margin-bottom: 20px;
background: red;
}

#footer {
position: absolute;
bottom: 0;
width: 100%;
height: 20px;
background: blue;
}

这按预期工作,但是当我缩小浏览器窗口时,页脚最终会覆盖主要内容。防止这种情况最有效的方法是什么?

提前致谢。

最佳答案

你需要一个 Sticky Footer .

Demo

这里是 another example使用伪元素。您可能对旧版本的 IE 有一些问题,但它允许您放弃非语义元素。

关于html - 绝对定位的 div float 在主要内容上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8380575/

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