php mPdf page-break-inside: 自动不工作

php mPdf page-break-inside: auto not work

当我在pdf文件中生成table时,当tr包含长文本时,分页符,table的下一个单元格转移到下一页.我尝试使用样式:

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

但它不起作用。如何在里面启用分页符?

插入行:

$mpdf->shrink_tables_to_fit = 1;

并使用

page-break-inside: avoid

在 table 标签中

你必须使用

table {page-break-inside: avoid;}