CSS 自动水平边距和底部边距

发布于 2024-12-27 14:17:38 字数 165 浏览 1 评论 0原文

我有一个带有 margin: 0 auto; 的 div,该部分效果很好。我还想给这个 div 下边距 80px。我试过 margin: 0 auto 80px; 并且在 webkit 浏览器中工作正常,但在 FF 中不行。有人知道如何在所有浏览器上实现这一点吗?

I have a div with a margin: 0 auto; and that part works great. I also want to give this div a bottom margin of 80px. I've tried margin: 0 auto 80px; and that work fine in webkit browsers, but not in FF. Anyone know how to achieve this for all browsers?

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

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

发布评论

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

评论(3

顾挽 2025-01-03 14:17:38

无论浏览器如何,除非太旧,否则您所说的(0 auto 80px)都应该有效。我自己做过很多次都没有错误。我认为这里发生了其他事情,我知道这听起来很愚蠢,但也许还有其他您不知道的选择器?这种情况发生的次数比人们想象的要多得多。

What you said (0 auto 80px) should work, regardless of browser unless too old. I've done it many times myself without error. I think something else is going on here, I know it sounds silly but maybe some other selector you're not aware of? this happens a lot more than one would guess.

谎言月老 2025-01-03 14:17:38

这应该可以做到

margin: 0 auto;
margin-bottom: 80px !important;

This should do it

margin: 0 auto;
margin-bottom: 80px !important;
仅此而已 2025-01-03 14:17:38

为什么你没有意识到一个带有 margin: 0 auto 的 div 并在这个 div 内另一个带有 margin-bottom: 80px; 的 div ?

Why you dont realize a div with margin: 0 auto and inside this div another div with margin-bottom: 80px;?

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