Reputation: 7942
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
Reputation: 490263
You can use the following CSS...
#cover-letter {
page-break-after: always;
}
Upvotes: 3