I have a table that is spanning across multiple pages. The thead is being repeated on the second page and is overlapping the content.
I am using bootstrap and have ensured the css from other wkhtmltopdf overlap solutions are implemented in my page.
thead { display: table-header-group; }
tfoot { display: table-row-group; }
tr { page-break-inside: avoid; }
table, tr, td, th, tbody, thead, tfoot, td div {
page-break-inside: avoid !important;
}