Adding A Page-Break In The Invoice Document Template

Hello, I have a client that wants to add another page after the actual invoice document that is being sent to the client that contains specific information on the top right part of the A4 page.

I have created a snippet containing the actual information and there starts my ordeal. I tried giving the new element css to cause a page break but my css is just being ignored!!!

Below is my snippet code. Can you please help me?? I guessed it would be easier to change a page on a document "editor" !

Thanks in advance!!!

actual information i want displayed on the upper right part of a new page

Try using the following to insert a page break.

Put this as you would use a
tag, so without any content.

Unfortunatelly, I have already tried this and while it should work, it simply doesnt. Its like the document builder simply ignores some css rules while others not. And I tried to follow its flow but its getting too complicating for me to debug this.

Thanks for your reply though

Unfortunatelly, I have already tried this and while it should work, it simply doesnt. Its like the document builder simply ignores some css rules while others not. And I tried to follow its flow but its getting too complicating for me to debug this.

Thanks for your reply though

page-break-before: always works in one of our projects correctly

sorry but how exactly does this work or is implemented ?

page-break-before: always works in one of our projects correctly

We use it in the following way:

.pagebreak { page-break-before: always; }