We're a place where coders share, stay up-to-date and grow their careers.
Any chance you could share your CSS? I haven't tried exactly this kind of a scenario but it could be that puppeteer has some limitation regarding css.
@page :first { display: none; } @page { size : portrait } @page rotated { size : landscape } h3 { page : rotated } p, h3 { page-break-after: always; } </style> <p>First Page.</p> <h3>Hello world</h3> <p>Second Page.</p> <button>Print!</button>```
Any chance you could share your CSS? I haven't tried exactly this kind of a scenario but it could be that puppeteer has some limitation regarding css.