Reputation: 706
In normal document file the form feed character acts as a page break. How can this be used in an HTML file?
Upvotes: 1
Views: 3731
Reputation: 943585
It can't. Use the CSS page-break-* properties instead.
page-break-*
For example:
article { page-break-after: always; }
Upvotes: 6