防止表格行內的分頁符號
在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中文網其他相關文章!