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]

# 2 Re: I need information
I mean when you print, you tell the printer to change page.
# 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?