Here is how my PDF result looks like (see the overlapping header on the second page):
The code is a simple HTML table with lots of content inside one TD element.
<table>
<thead>
<tr>
<th>BESCHREIBUNG</th>
<th>PREIS</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lots of TEST's</td>
<td>1,40 EUR</td>
<tr>
</tbody>
</table>
I know there is already this issue (as well as some others):
wkhtmltopdf repeating thead headers overlapping content
And the solution in there works for me:
thead { display: table-header-group; }
tfoot { display: table-row-group; }
tr { page-break-inside: avoid; }
However it only works for tables with multiple rows (tr's).
In my case as you see above I have a TD with a description that can contain quite a lot of content, so one single row would span across more than one page.
Does one have a solution for this special case as well?
td {max-height: 90vh;}
? – Helgeson