HTML to PDF / DOCX / RTF Java converter library › Forums › PD4ML v3 Archived Forums (Read Only) › HTML/CSS rendering issues › How Split a Table Header In Each Page › Re: Re: How Split a Table Header In Each Page
April 29, 2011 at 10:51
#28220
enableSmartTableBreaks(true) implicitly defines
TABLE, TR { page-break-inside: avoid }
You may partially override it with
TABLE { page-break-inside: auto !important }
to prevent a table moving to its next page.