CSS to stop page break inside of table row
问题 I am trying to avoid having page breaks inside of rows for my HTML tables that may go past one page. I am using Internet Explorer Print Preview and also BCL EasyPDFSDK to convert to PDF to test this. I applied the following CSS styling in various combinations to the <td> elements but for each one I was getting an undesired result: td { page-break-inside: avoid !important; white-space: nowrap; overflow: hidden; margin: 4px 0 4px 0; } I believe the page-break-inside: avoid !important is working