如何消除 HTML5 Boilerplate 中标头和容器 div 之间的间隙
我很想使用 Paul Irish 的 HTML5 样板,但我遇到了 CSS 问题。
我希望标题与页面顶部齐平,但我不能让容器 div 添加一个我无法消除的间隙。
我认为这与页脚的clearfix有关。我尝试过为页脚和容器 div 尝试不同的填充大小,但没有成功。
这是html代码:
<header>
<p> header content </p>
</header>
<div id="main" role="main">
</div>
<footer>
<p> footer content </p>
</footer>
我的自定义CSS:
#container {
background-color:orange;
padding:1px; /* can't be zero */
margin:0;
}
footer {
margin: 1px 0;
}
body {
width:960px;
margin:0 auto;
background:blue;
padding:0;
}
I'm keen to use Paul Irish's HTML5 boilerplate but I've encountered a css problem.
I want the header to be flush at the top of the page but I can't the container div adds a gap that I'm unable to get rid of.
I think this has something to do with the clearfix for the footer. I've tried experimenting with different padding sizes for the footer and container div but to no avail.
This is the html code:
<header>
<p> header content </p>
</header>
<div id="main" role="main">
</div>
<footer>
<p> footer content </p>
</footer>
My custom CSS:
#container {
background-color:orange;
padding:1px; /* can't be zero */
margin:0;
}
footer {
margin: 1px 0;
}
body {
width:960px;
margin:0 auto;
background:blue;
padding:0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@techjacker;可能你必须这样写:
@techjacker; may be you have to write like this:
这有时会有所帮助:
This sometimes help: