-
-
Notifications
You must be signed in to change notification settings - Fork 980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOMPDF to enable automatic page breaks when encountering large content in <td> wrapper #1046
Comments
This exactly issue occurred on below URL: https://eclecticgeek.com/dompdf/debug.php?identifier=f333a1b5cedfbec3ceeff081b8fbf857 |
laravel-dompdf/.github/ISSUE_TEMPLATE/bug_report.md Lines 10 to 12 in 424a223
|
"Dompdf does not support making a new page using a table cells/rows between pages. Meaning if the text on your table is too long, it will move on the next page. Also all data inside the table will move also on the next page." So, in my case I need to change table for div. before
after
|
To insert a page break in pdf, the html code must have an element with the style page-break-before: always or page-break-after: always. Before or after that specific element, a page break will be inserted into the generated pdf document. The element can be anything (image, table, table row, div, text, etc).
The text was updated successfully, but these errors were encountered: