作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下网页。
<body>
<div id="everything">
<div id="top_header">TOP BAR WITH INFO. FIXED HEIGHT</div>
<div id="content">
<div id="header"><h1> MENU</h1></div>
<div id="body">CONTENT</div>
</div><!--end content-->
<div id="footer">DYNAMIC HEIGHT DEPENDING ON THE LINKS IN THE FOOTER</div>
</div><!--end everything-->
</body>
和样式:
<style type="text/css">
body {
background-color: #FFFFFF;
font: 13px arial;
margin: 0;
padding: 0;
width: 100%;
}
#everything {
background-color: #FFFFFF;
min-height: 100%;
margin: auto;
width: 100%;
}
#content {
display: block;
margin: auto;
width: 1000px;
}
#header {
padding-bottom: 25px;
background-color:#666699;
height:60px;
}
#body {
background: none repeat scroll 0 0 #FFFFFF;
margin: 0 auto;
padding-bottom: 23px;
background-color:#CC3333;
height:1500px;
}
#footer {
display: inline-block;
position: absolute;
bottom:0px;
width: 100%;
background-color:#FF6600;
height:70px;
}
#top_header {
width:100%;
background-color:#0066CC;
height:30px;
}
h1{
margin:0;
}
</style>
我的页脚高度是动态的,我无法更改 HTML 结构,只能更改 CSS。当我在较小的屏幕上查看网页并且“正文”的高度大于视口(viewport)时,没有问题,但是如果我在较大的屏幕上查看网页并且“正文”的大小小于视口(viewport),则页脚不会'坚持底部。此外,如果“正文”的尺寸很大(如本例所示),它不会将页脚推到底部。 你能帮我让页脚始终贴在视口(viewport)的底部,而不知道页脚的高度以及我所有内容所在的“正文”的高度吗?
谢谢,米海
最佳答案
您可以定义页脚相对位置并删除绝对位置
#footer{
position:relative;
}
关于css - 100% 高度 - 底部的动态高度页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10007328/
我是一名优秀的程序员,十分优秀!