I need information

Is there a way to generate a page break in HTML ?
[49 byte] By [Boumxyz2] at [2007-11-17 19:04:29]
# 1 Re: I need information
Do you mean line break eg. <br />?
gangelo at 2007-11-8 0:12:47 >
# 2 Re: I need information
I mean when you print, you tell the printer to change page.
Boumxyz2 at 2007-11-8 0:13:47 >
# 3 Re: I need information
I usually set a style up like this:
<style media="print">
.pagebreak {page-break-before:always}
</style>

and then assign the style with <... class="pagebreak"..> whenever I want a new page. Have a shufti at http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/pagebreakbefore.asp for applicable element tags.

Note, though, that this is an IE solution - any netscapers out there have any suggestions?
Surrendermonkey at 2007-11-8 0:14:46 >