Share this page 

Forcing a FormFeed when printing a pageTag(s): HTML/CSS


Using StyleSheet, it's easy to force a page break when printing a page.
<table>
  <tr><td>Page 1</td></tr>
</table>

<table style="page-break-before: always">
  <tr><td>Page 2</td></tr>
</table>