NReco PDF 生成器重叠 table header 当 table 被拆分成多个页面时

NReco PDF Generator overlapping table header when the table is split over pages

我正在使用 NReco PDFGenerator 从 HTML 字符串创建 PDF 文档。当 table 在分页符上拆分时,table header 会与 table 中的下一行重叠(见下图)。

关于如何解决这个问题有什么想法吗?

我发现通过添加以下 css:

可以解决这个问题
thead {display: table-header-group;}
tfoot {display: table-row-group;}
tr {page-break-inside: avoid;}