CSS 自动水平边距和底部边距
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
无论浏览器如何,除非太旧,否则您所说的(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.
这应该可以做到
This should do it
为什么你没有意识到一个带有 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;?