There are numerous spots that are good for page breaks made especially for printing:
- Between page sections (h2 or h3 tags, depending on your site format)
- Between the end of an article and subsequent comments / trackbacks
- Between longs blocks of content
Luckily, using page breaks in CSS is quite easy.
The CSS Code
- @media all
- {
- .page-break { display:none; }
- }
-
- @media print
- {
- .page-break { display:block; page-break-before:always; }
- }
The XHTML Code
- <DIV class=page-break></DIV>
The Usage
- <H1>Page Title</H1>
-
-
- <DIV class=page-break></DIV>
-
-
- <DIV class=page-break></DIV>
-
-