jQuery DataTables 和 IE/Chrome/Safari:表格与页脚重叠而不是向下推

发布于 2024-12-05 02:34:10 字数 399 浏览 1 评论 0原文

这只发生在 Google Chrome 和 Safari 上(在 Firefox 上不是问题)。

如果我有一个包含多行数据的表格,它最终会扩展表格的高度 - 然后表格实际上会与页脚重叠,而不是向下推包含页脚的 DIV。在 Firefox 上,页脚按照我的预期被推下。

谁能给我建议如何解决这个问题? 很高兴包含具体代码——整体结构如下:

<div>
    <div id="main">

        //datatables being built here

    </div>
    <div id="footer">

        //footer code here

    </div>
</div>

This only happens on Google Chrome and Safari (not a problem on Firefox).

If I have table that with multi-line data, it ends up expanding the table's height -- then instead of pushing down the DIV containing my footer, the table actually overlaps the footer. On Firefox the footer is pushed down as I'd expect.

Can anyone give me suggestion how to resolve this?
Will be glad to include specific code -- the overall structure is as follows:

<div>
    <div id="main">

        //datatables being built here

    </div>
    <div id="footer">

        //footer code here

    </div>
</div>

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

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

发布评论

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

评论(1

洋洋洒洒 2024-12-12 02:34:10

您有一些代码可以向我们展示吗?

它可能很简单:

#main {
float: left;
clear: both;
}

or 

#main table {
float: left;
clear: both;
}

Do you have some code to show us?

It might be as simple as:

#main {
float: left;
clear: both;
}

or 

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