当我在pdf文件中生成表格时,当tr
包含长文本,分页符时,表格的下一个单元格将转移到下一页面。我试着用风格:
table, tr, td, th, tbody, thead, tfoot {
page-break-inside: auto !important;
}
但它没有用。如何在里面启用分页?
答案 0 :(得分:3)
插入行:
$mpdf->shrink_tables_to_fit = 1;
并使用
page-break-inside: avoid
表格标签中的
答案 1 :(得分:1)
你必须使用
table {page-break-inside: avoid;}