Instruct Firefox (or any browser than can) to print data on a webpage to next page?

2

For example I have the following HTML page

<html>
<head></head>
<body>

This should be printed in the first page

<!-- Special code to print anything below this line to next page -->

This should be printed in the second page

</body>
</html>

Is there a special code like that?

IMB

Posted 2011-11-15T12:27:59.440

Reputation: 4 845

Answers

3

So far as I know, there is no special code to control displayed "pages" because "next page" has different meaning on an iPhone, on a 10" tablet and on a dual 24" screen PC.

I believe page-break-before="always|auto|" can be used in CSS2 to affect printing of HTML.

RedGrittyBrick

Posted 2011-11-15T12:27:59.440

Reputation: 70 632