HTML to PDF/RTF Java converter and tools › Forums › PD4ML v3 Archived Forums (Read Only) › General questions / FAQ › PD4ML Table Breaks › Re: Re: PD4ML Table Breaks
September 4, 2013 at 09:36
#29383
html.enableSmartTableBreaks(true) implicitly defines
TABLE, TR {page-break-inside: avoid}
CSS style. Obviously to resolve the issue you would need either disable the smart table break mode or to define an extra CSS style (i.e. with html.addStyle())
TABLE {page-break-inside: auto !important}