gpt4 book ai didi

css - 页脚定位问题

转载 作者:行者123 更新时间:2023-11-28 17:47:52 27 4
gpt4 key购买 nike

这是问题的一个例子 FIDDLE DEMO

当您缩小查看窗口,使页脚与其他内容重叠并出现滚动条时。

当向下滚动时,页脚会卡在之前的位置,不会再向下滚动。如果可能,我不想固定页脚 (position:fixed)。

这可以通过某些东西 min/max-height 属性或 z-index 来解决吗?

HTML:

<header>something here</header>
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempora temporibus illum aliquam voluptatum at blanditiis itaque tenetur laborum officia culpa maiores quasi accusantium excepturi! Quidem alias ullam praesentium quod eius.</div>
<footer>&copy; 2014 some text</footer>

CSS:

header {
width: 100%;
height: 100px;
text-align: center;
color: #fff;
background-color: #333;
}
div {
height: 200px;
background-color: #ccc;
}
footer {
color: #fff;
background-color: #333;
height: auto;
width: 100%;
text-align: center;
bottom: 0px;
position: absolute;
}

最佳答案

这里的问题是 bottom:0 !!

我希望这是你想要的 -> Fiddle Demo

我添加了 height:100% 希望这就是您想要的。

如果你愿意,你可以改变它

html,body{
width:100%;
height:100%;
}
header {
width: 100%;
height: 100px;
text-align: center;
color: #fff;
background-color: #333;
}
div {
height: 100%;
background-color: #ccc;
}
footer {
color: #fff;
background-color: #333;
height: auto;
width: 100%;
text-align: center;
position: absolute;
}

关于css - 页脚定位问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22889845/

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