HTML打印:防止跨合并行分页

时间:2018-09-16 06:39:28

标签: html css

我在打印大型html表时遇到问题,其中第一列与动态行数合并。但是,我正在使用以下css来进行适当的分页符。

    table.print-friendly {
    page-break-inside: auto
}

table.print-friendly tr {
    page-break-inside: avoid;
    page-break-after: auto
}

table.print-friendly thead {
    display: table-header-group
}

table.print-friendly tfoot {
    display: table-footer-group
}

下流边缘图片如下: enter image description here 但是第一列没有正确中断。经过大量搜索,我没有找到解决该问题的任何方法。

我的要求是,合并的列中不会出现任何渗漏边缘,这意味着如果第一页无法分配第四学期的所有行,则应从新页开始。 谢谢

0 个答案:

没有答案