This tip is for Internet Explorer 4.x. and above.
If you provide documents on your Web site that users can print, you can control the placement of page breaks in your documents by using the page-break-before and page-break-after attributes. These attributes indicate when to break to a new page when printing the document and on what page (left or right) to resume printing. These attributes are useful when you want to print long documents into logical sections.
For example, the following document defines a class "page" in a style sheet and uses it to set page breaks in the
document.
<HTML>
<HEAD><TITLE>Page Breaks</TITLE>
<STYLE>
BR.page { page-break-after: always }
</STYLE>
</HEAD>
<BODY>
.
content on page 1
.
<BR CLASS=page>
.
content on page 2
.
</BODY>
</HTML>