在 Firefox 中,表格边距不会折叠

发布于 2024-12-17 12:05:17 字数 382 浏览 0 评论 0原文

我制作了这个小提琴来演示这个问题。表格边距在 Firefox 中不会折叠,而在 Chrome 和 IE 中会折叠。

Firefox

Firefox 中的表格边距不会折叠

Chrome 和 IE

Chrome 和 IE 中的表格边距折叠

此问题有任何解决方法吗?

I made this fiddle to demonstrate the problem. Table margins don't collapse in Firefox, whereas they do in Chrome and IE.

Firefox

Table margins don't collapse in Firefox

Chrome and IE

Table margins collapse in Chrome and IE

Is there any workaround for this problem?

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

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

发布评论

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

评论(1

胡渣熟男 2024-12-24 12:05:17

Firefox 不会使用 table's折叠垂直边距,因为 http://www. Fiveminuteargument.com/margin-collapse-tables

在表中写入 display:block 如下:

section, div, table {
    margin: 1em;
    display:block;
}

检查此示例 http://jsfiddle.net/fhhWd/2/

Firefox is not collapsing vertical margin with table's because http://www.fiveminuteargument.com/margin-collapse-tables

Write display:block in table like this:

section, div, table {
    margin: 1em;
    display:block;
}

Check this example http://jsfiddle.net/fhhWd/2/

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