Neither google nor the @Page documentation nor this link has any info on this.
I have the following code to show page numbers in a footer on the right of the page of the pdf I generate from html :
@page {
@bottom-right {
content: "Page " counter(page) " of " counter(pages);
}
}
This happily prints Page A of X
. How do I style A and X ?