php mPdf page-break-inside:auto not not work

时间:2016-10-12 20:59:15

标签: php pdf mpdf

当我在pdf文件中生成表格时,当tr包含长文本,分页符时,表格的下一个单元格将转移到下一页面。我试着用风格:

 table, tr, td, th, tbody, thead, tfoot {
     page-break-inside: auto !important;
}

但它没有用。如何在里面启用分页?

2 个答案:

答案 0 :(得分:3)

插入行:

$mpdf->shrink_tables_to_fit = 1;

并使用

page-break-inside: avoid
表格标签

中的

答案 1 :(得分:1)

你必须使用

table {page-break-inside: avoid;}