Div 的边距影响另一个不相关的 Div

发布于 2024-12-21 04:52:56 字数 1382 浏览 0 评论 0原文

<div class="footernote">
    <p>
       One statement ....
    </p>
</div>
<footer>
    <p>Current Visitors: 11</p>
    <ul>
        <li><a href="#">Link 1</a></li>
        <li><a href="#">Link 2</a></li>
    </ul>
    <p class="copyright">copyright statement</a></p>
</footer>

CSS:

footer ul {
    text-align: center;
    margin-left: 90px;
    margin-top: 18px;   
}

footer ul li {
    display: inline;
    padding-right: 30px;
}

.copyright {
    margin-left: 80px;
    margin-top: 23px;
    text-align: center;
    font-size: small;
}

.footernote {
    text-align: center;
}

问题:

  1. 如果我将 margin-bottom 值放入 .footernote 中,

    中的任何内容都会更改其由于我在 .footernote 中放入的 margin-bottom 值而产生的位置。 footernote 不在
    中,因此它们都是不同的元素。
    的集合为什么会受到 .footernote 的影响?

  2. 当我更改页脚的 margin-top 时,也会出现同样的问题呃!版权声明生效,它根据我在页脚 ul 中放入的页边距顶部向上或向下拉动。

<div class="footernote">
    <p>
       One statement ....
    </p>
</div>
<footer>
    <p>Current Visitors: 11</p>
    <ul>
        <li><a href="#">Link 1</a></li>
        <li><a href="#">Link 2</a></li>
    </ul>
    <p class="copyright">copyright statement</a></p>
</footer>

CSS:

footer ul {
    text-align: center;
    margin-left: 90px;
    margin-top: 18px;   
}

footer ul li {
    display: inline;
    padding-right: 30px;
}

.copyright {
    margin-left: 80px;
    margin-top: 23px;
    text-align: center;
    font-size: small;
}

.footernote {
    text-align: center;
}

Problem:

  1. If i put margin-bottom value in .footernote, whatever inside <footer> changes its position due to the margin-bottom value i put in .footernote. footernote is not in <footer>, so they are both different elements. How come the set of <footer> gets effected by .footernote?

  2. Same problem appears when i change margin-top of footer ul! Copyright statement gets effected, it pulls up or down based on margin-top i put in footer ul. <p class="copyright"> is a separate element. Any idea why does this indirect effect occur?

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

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

发布评论

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

评论(1

夏见 2024-12-28 04:52:56

如果没有测试用例,我不确定,但这几乎肯定是“利润崩溃”在起作用:

某些相邻的边距组合在一起形成单个边距。那些
据说利润率正在“崩溃”。如果没有,边距是相邻的
非空内容、填充或边框区域或分隔间隙
他们。

规范:

一些更简单的阅读:

I'm not certain without a test case, but this is almost certainly "collapsing margins" at work:

Certain adjoining margins combine to form a single margin. Those
margins are said to “collapse.” Margins are adjoining if there are no
nonempty content, padding or border areas or clearance to separate
them.

The spec:

Some easier reads:

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