作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我暂时删除了页脚,网站必须上线。所以链接也不见了。
如您所见(在 FF2 和 IE7 中)页脚位于屏幕底部,但不在页面(内容)底部。
我的代码中有这个:
<div id="wrap">
<div id="top"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
在 css 中:
html {
height: 100%;
margin: 0;
padding: 0;
}
body {
height: 100%;
margin: 0;
padding: 0;
padding-bottom: 30px; /* height of the footer */
}
#wrap {
margin-left: auto;
margin-right: auto;
width: 960px;
min-height: 100%;
position: relative;
}
*#wrap { /* IE hack */
height:100%;
}
#footer {
position: absolute;
bottom: 0;
width: 100%;
height: 30px;
padding: 0;
margin: 0;
}
或者,长话短说:我按照给出的说明进行操作 here .
最佳答案
您没有足够仔细地按照您的说明进行操作。 Matthew's layout的关键
<div id="container">
<div id="header"></div>
<div id="body"></div>
<div id="footer"></div>
</div>
是容器有position:relative而页脚有position:absolute。这将一个放在另一个里面。请注意,通过保留 padding-bottom 页脚的大小,容器为页脚保留了一个空间。因此,布局仅在页脚高度固定时有效。
绝对定位 botttom:0 元素将把自己放在最近的相对定位父元素的底部。如果不存在,则使用视口(viewport)代替,这就是您的布局中发生的情况。
你的 footer div 不是你的 wrap div 的子元素。
关于css - 页脚没有粘在底部,尽管我已经对它进行了编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/411228/
查看此页面:http://jsbin.com/itufix使用 IE(页面自动启用 IE7 模式)。 在这里您将找到如何使用显示 block 呈现内联元素(输入和跨度)的示例。所有元素的边距和填充都设
我有一个自定义的 UITabvleViewCell,其中有一个 UIImageView。当在 cellForRowAtIndexPath 中设置单元格时,我可以很好地设置图像(尽管我没有),但是在某些
我是一名优秀的程序员,十分优秀!