I'm trying to show the number of pages on PDF file.
So in the header I put this css:
.page-number:after {
counter-increment: pages;
content: counter(page) " of " counter(pages);
}
Html:
<span class="page-number">Page </span>
But it returns me Page 1 of 1 ... Page 2 of 2.
The first counter works fine but the total is wrong.
How can I solve that?