I would like one page of my document to be printed separately from the rest of the pages, how can I do that please?
What I mean is for example, I have 4 pages, I don't really care how the first 3 pages print in terms of how content is rolled over on the pages, but I would like the last page to print on a page by itself.
How can I do that please? Thank you!!
What I mean is for example, I have 4 pages, I don't really care how the first 3 pages print in terms of how content is rolled over on the pages, but I would like the last page to print on a page by itself.
How can I do that please? Thank you!!
Hi LikeStuff,
You can use the CSS page-break-before: always; to force a page break.
Bob
You can use the CSS page-break-before: always; to force a page break.
Bob
Can someone please give me a hint as to why this is happening.
I am supposed to have 3 pages but it puts an extra BLANK page after each Page Break.
This is the code in my Custom Element:
This is by CSS:
Thanks in advance!!
I am supposed to have 3 pages but it puts an extra BLANK page after each Page Break.
This is the code in my Custom Element:
<div id='breakForm'></div>
This is by CSS:
#breakForm {
page-break-after: always;
}
Thanks in advance!!
Hi Greyhead,
I'm using the page break code to break the page at certain points. The page break code works but it seems to put an extra BLANK page after each break.
This is how the pages are printing....
This is how the pages are supposed to print:
Hope this clarifies a bit more. Thanks!!
I'm using the page break code to break the page at certain points. The page break code works but it seems to put an extra BLANK page after each break.
This is how the pages are printing....
-----------------------
Page 1 - Content on this page
-----------------------
Page 2 - Blank page
-----------------------
Page 3 - Content on this page
-----------------------
Page 4 - Blank page
-----------------------
Page 5 - Content on this page
-----------------------
This is how the pages are supposed to print:
-----------------------
Page 1 - Content on this page
-----------------------
Page 2 - Content on this page
-----------------------
Page 3 - Content on this page
-----------------------
Hope this clarifies a bit more. Thanks!!
This topic is locked and no more replies can be posted.