• 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.

HTML Tag for Page Break

Does anyone know what the HTML tag is for inserting a page break? It doesn't have to show up on the screen, just when the page prints out.
 
It is not an html tag, its a Cascading Style Sheet property.

page-break-after: ?
when printed, breaks the page at the location of the tag (always, auto: default)
page-break-before: ?
when printed, breaks the page before the location of the tag (always, auto: default)

so you would do something like this:


<style>
br { page-break-after: always; }
</style>

then whenever you use the <br> tag, it would insert a page break after the tag
 
ok...i tried that....am i doing something wrong?

I'm sticking the <style>...</style> stuff in the head.

Whenever i put a <br> tag in the HTML it doesn't break. I did a cut and paste.


 
Back
Top