作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为响应式网站工作并使用 Twitter Bootstrap 。我无法修复我网站中的页脚。用谷歌搜索了许多网站找到了解决方案,但它不适用于我的特定页面。无法追踪问题。请查看 code here jsdiddle. .我不希望页脚下方有任何空间。谢谢。
//css
html, body {
height: 100%;
margin: 0pt;
}
#wrap {
min-height: 100%;
height: auto;
margin: 0 auto -60px;
padding: 0 0 60px;
}
#footer {
height: 60px;
background-color: #f5f5f5;
}
最佳答案
您的 HTML 结构不正确。
页脚 div 必须在换行之外
HTML
<div id="wrap">
<div class="container-fluid" style="padding-top:1%; padding-bottom: 1%;">
<div class="row-fluid">
<div class="span12 largecircle">
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container-fluid" style=" background-color:#cccccc; position: absolute; opacity:0.7;">
<div class="row-fluid">
<h1>Sticky </h1>
</div>
<p class="lead">Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
<p>Use if need be, too.</p>
</div>
</div>
关于html - 如何删除 HTML5 中粘性页脚下方的空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21046515/
我是一名优秀的程序员,十分优秀!