How to disable page-break before a long iframe while printing?

18 Views Asked by At

There is a page-break before a long iframe while printing the webpage however the iframe itself has the possibility of breaking into different pages. I want to avoid page-break and blank space before iframe.

I tried disabling page-break-before but didn't work:

Check the output below by pressing the print button:

 @media print {
    iframe {
      page-break-before: avoid;
    }
  }
<button onclick="window.print()">Print this page</button>

<iframe style="width:100%;height:1900px" style="border:1" src="https://www.example.com"></iframe>

0

There are 0 best solutions below