MK Singh
MK Singh

Reputation: 706

How to use a form feed character in HTML file?

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

Answers (1)

Quentin
Quentin

Reputation: 943585

It can't. Use the CSS page-break-* properties instead.

For example:

article {
    page-break-after: always;
}

Upvotes: 6

Related Questions