Frequently Asked Questions
Will CSS styles be preserved in the PDF?
Most CSS works — layout, colors, fonts, borders, and tables all render well. Background images may need 'Background graphics' enabled in the print dialog. Some complex CSS (animations, fixed positioning) behaves differently.
How do I control page breaks?
Use CSS properties: page-break-before, page-break-after, and page-break-inside. For example: h1 { page-break-before: always; } to start a new page before every h1.
Can I use Google Fonts in my HTML?
Yes — include the Google Fonts link in the <head> of your HTML. The print dialog renders the page as the browser sees it, so fonts load normally.
How do I remove browser headers/footers from the PDF?
In Chrome's print dialog, uncheck 'Headers and footers'. In Firefox, go to File → Page Setup → Headers/Footers and set all to blank.