Linens
Linens

Reputation: 7942

Ensure contents print on separate pages

I have a cover letter and resume together in seperate divs on one html web page.

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

Is there any way to ensure that the two divs print on seperate pages?

Upvotes: 3

Views: 876

Answers (1)

alex
alex

Reputation: 490263

You can use the following CSS...

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

Upvotes: 3

Related Questions