print page count with total number of pages using css

Did you try this:

@page {
   @bottom-right {
    content: counter(page) " of " counter(pages);
   }
}

Leave a Comment