Link to home
Start Free TrialLog in
Avatar of popster
popster

asked on

Page break in HTML pages

Is it possible to insert a page break in HTML pages using javascripts or any other means?  this is to facilitate the printing of a report. pls help.. thanks in advance..

regards,
popster
ASKER CERTIFIED SOLUTION
Avatar of g_damodar
g_damodar

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Add this inside your <head></head> tag:

<style>
p.page {page-break-before: always}
</style>

Then inside <body></body>

<p class="page">
What ever html stuff you want to print on one page
</p>
Avatar of YZlat
<br style="page-break-before:always;">

or

br {
page-break-before:always;
}