保证金不会压低另一个保证金

发布于 2024-09-17 00:05:51 字数 367 浏览 2 评论 0原文

我有一系列这样的元素:

<h1>...</h1>
<p>.......</p>
<h1>...</h1>
<p>.......</p>
<!-- etc. -->

我在 h1 上有 5px 上边距,在 p 上有 10px 下边距。但最终的边距只有 10px。如果我将底部边距增加到 50 像素,将顶部边距增加到 40 像素,则总边距只有 50 像素。

总利润始终是最大利润。为什么?我该如何解决它?

I have a series of elements like this:

<h1>...</h1>
<p>.......</p>
<h1>...</h1>
<p>.......</p>
<!-- etc. -->

I have a 5px top margin on h1, and a 10px bottom margin on p. But the resulting margin is only 10px. And if I increase the bottom margin to 50px and the top margin to 40px, the total margin is only 50px.

The total margin is always whatever the biggest margin is. Why? And how can I fix it?

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

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

发布评论

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

评论(1

ι不睡觉的鱼゛ 2024-09-24 00:05:54

您看到的行为称为边距崩溃,这是一种预期行为。基本上,当两个块级元素的边距接触时,它们会折叠,并且只有最大的一个会出现。

相邻之间的边距塌陷
元素。简单来说,这意味着
对于相邻的垂直块级
正常文档流中的元素,
仅元素的边距
最大保证金值为
很荣幸,而边缘
边距值较小的元素
将折叠为零。

http://reference.sitepoint.com/css/collapsingmargins

没有办法解决此问题 -您可以尝试使用 padding 来代替,或者简单地通过考虑到这一点来增加边距。

The behavior you're seeing is known as margin collapse, and it is an expected behavior. Basically, when the margins of two block level elements touch, they collapse, and only the largest one will appear.

Margins collapse between adjacent
elements. In simple terms, this means
that for adjacent vertical block-level
elements in the normal document flow,
only the margin of the element with
the largest margin value will be
honored, while the margin of the
element with the smaller margin value
will be collapsed to zero.

http://reference.sitepoint.com/css/collapsingmargins

There is no one fix for this - you can try using padding instead, or simply increase the margins by taking this into account.

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