如何消除 HTML5 Boilerplate 中标头和容器 div 之间的间隙

发布于 2024-12-05 07:44:50 字数 657 浏览 2 评论 0原文

我很想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ぶ宁プ宁ぶ 2024-12-12 07:44:50

@techjacker;可能你必须这样写:

 header{display:block}
    p{margin:0;padding:0}

@techjacker; may be you have to write like this:

 header{display:block}
    p{margin:0;padding:0}
旧竹 2024-12-12 07:44:50

这有时会有所帮助:

  • 将边距和填充设置为 0。
  • 并确保编码设置为:UTF-8 without BOM。

This sometimes help:

  • Set margins, and padding to 0.
  • And make sure that encoding is set to: UTF-8 without BOM.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文