打印页表行/单元格时在分页符上拆分

发布于 2024-10-19 18:59:28 字数 75 浏览 0 评论 0原文

我有一个包含嵌套表格的表格。当我打印此页面时,单元格在分页符上被分割。

我是否有机会控制它应该跳到下一页而不是分割中间?

I have an table with nested tables in. When I am printing this page, the cells gets split on page break.

Is there any chance that I can control that it should jump onto the next page instead of splitting the middle?

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

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

发布评论

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

评论(2

下壹個目標 2024-10-26 18:59:28

我使用以下方法将一行内容保留在一个页面上:

<tr style="page-break-inside: avoid">

不幸的是,浏览器支持有限。在 Internet Explorer 9 中运行良好,但在 Chrome 22 或 Firefox 15 中运行不佳。

I have used the following method to keep the contents of a row together on one page:

<tr style="page-break-inside: avoid">

Unfortunately browser support is limited. Works fine in Internet Explorer 9, but not in Chrome 22 or Firefox 15.

痴者 2024-10-26 18:59:28

您可以查看 page-break-before css 属性。例如,您可以在每个单元格上将其设置为auto

但我不能保证这会起作用,每个导航器的打印效果都略有不同。例如,Firefox 在打印大表格(超过一页)时会遇到问题。

You can have a look at the page-break-before css property. For example you can set it to auto on each of your cells.

Bur I can't guarantee this will work, each navigator prints a little differently. Firefox is known to have problems printing big tables (more than a page) for example.

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