防止表格行内的分页符
在 HTML 中,使用 wkhtmltopdf 转换为 PDF 时,表格行内的分页符可能会很麻烦。虽然设置 page-break-inside:void with the table 通常可以解决问题,但它可能会停止处理过多的行。
要克服此限制,可以使用替代 CSS 方法:
<table class="print-friendly"> <!-- The rest of your table here --> </table> <style> table.print-friendly tr td, table.print-friendly tr th { page-break-inside: avoid; } </style>
直接将大多数 CSS 规则应用于
以上是将 HTML 转换为 PDF 时如何防止表格行内分页?的详细内容。更多信息请关注PHP中文网其他相关文章!