• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Page breaks in web pages

EvilManagedCare

Senior member
Hi all,

In word processors, for example, one can insert a page break such that a new page is started before the previous page's end is reached (e.g. alt-enter in MS Word). Is this acheiveable in web pages as well? I don't mean doing so as the user views the rendered page.

For example, I am displaying the results of 2 documents documents in a single web page. Each webpage contains 2 separate letters that are sent out to two different parties. I would like application to return a single web page such that both letters can be viewed within the same page (the contents of both would be seen as the user scrolls down the page), but when the webpage is printed 2 documents are printed (each letter would print on a single sheet of paper). Is this possible? My first thought is it could possibly be acheived by some CSS, but how would you indicate where the end of the first letter goes and the next one begins?

Hope this makes sense.
 
This makes sense, and i'm not sure that this can be achieved via CSS.

Would it be acceptable to show a PDF for this information? Or create two separate pages/web views?

Web printing is a little bit of a PITA.
 
Maybe could do something like:

Letter one click here (opens a new window with the first letter)
Letter two click here (opens a new window with the second letter)

OR

Click here for a PDF with the letters
 
I believe I have found a solution. I know I Googled this before and nothing came back that was useful. Bottom line, I was unaware the page break properties could be applied to more than table elements. Nothing to see here...

Seems to be resolved unless anyone else has other suggestions.


edit: Thanks for the fast response, Krioni. For the purposes of this application, the web printing won't be too much of a hardship.
 
You can have a css for display and one for printing.
In display you float them next to each other, in printing normal order below each other.
 
You can have a css for display and one for printing.
In display you float them next to each other, in printing normal order below each other.

Yeah, I know that... but that doesn't address his original question of having specific page breaks.
 
Back
Top