为什么包装 div 在应用于其子 div 时会应用上边距?

发布于 2024-10-28 12:58:22 字数 400 浏览 0 评论 0原文

这是一个 html 示例:

<div id = "wrapper">
   <div id = "content">
   </div>
</div>

这是 CSS:

#wrapper
{
  width:  1000px;
  min-height:  850px;
  border:   1px solid;
}
    #content
    {
        height:  450px;
        float:   left;
        margin:  50px 0px 0px 0px;
    }

那么当您在浏览器中查看时,包装器 div 正在应用边距?这是为什么?

Here is an example html:

<div id = "wrapper">
   <div id = "content">
   </div>
</div>

here is the CSS:

#wrapper
{
  width:  1000px;
  min-height:  850px;
  border:   1px solid;
}
    #content
    {
        height:  450px;
        float:   left;
        margin:  50px 0px 0px 0px;
    }

So when you look in the browser, the wrapper div is getting the margin applied to it? why is that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

汐鸠 2024-11-04 12:58:22

您删除了 body 标签中的边距吗?

<body  marginheight="0" marginwidth="0">

have you removed the margin in the body tag?

<body  marginheight="0" marginwidth="0">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文