打印页表行/单元格时在分页符上拆分
我有一个包含嵌套表格的表格。当我打印此页面时,单元格在分页符上被分割。
我是否有机会控制它应该跳到下一页而不是分割中间?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用以下方法将一行内容保留在一个页面上:
不幸的是,浏览器支持有限。在 Internet Explorer 9 中运行良好,但在 Chrome 22 或 Firefox 15 中运行不佳。
I have used the following method to keep the contents of a row together on one page:
Unfortunately browser support is limited. Works fine in Internet Explorer 9, but not in Chrome 22 or Firefox 15.
您可以查看 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.