作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是问题的一个例子 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>© 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/
我是一名优秀的程序员,十分优秀!