You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The predefined pages counter cannot be modified. That's what the spec says:
Additionally, a counter named pages is automatically created by the UA. Its value is always the total number of pages in the document. (In continuous media this is always 1.) The value of pages cannot be manipulated: while counter-reset and counter-increment statements that set it are valid, they have no effect.
Hello,
Need a single PDF with three copies of same document with Copy 1, Copy 2 and Copy 3.
Please check the code for PDF:
<style> @page { counter-reset:page 1; counter-reset:pages 1; } @page { @bottom-right{ content: "Page " counter(page) " of " counter(pages); } } </style>applied counter-reset on page.
currently i am getting "Page 1 of 3" instead of "page 1 of 1" for each copy
I need :
first copy having:
page 1 of 1
second copy having:
page 1 of 1
for third having:
page 1 of 1
When i applied "counter-reset:pages 1" for total pages, it is not working.
How would it possible to set counter-reset on Total Pages?
Thank You !!
The text was updated successfully, but these errors were encountered: