Print content on separate pages

I have a cover letter and resumes together in separate divs on the same html web page.

When I try to preview, half of my resume is on the cover letter page.

Is there a way to ensure that two divs are printed on separate pages?

+3
source share
1 answer

You can use the following CSS ...

#cover-letter {
   page-break-after: always;
}
+3
source

All Articles