There is an html file. When printing, each page should be numbered. Page numbering must have a periodicity, for example, 1,2,3,1,2,3.
I can implement sequential numbering (1,2,3,4,5,6) via CSS:
@page {
@top-center { content: counter(page) }
}
Is it possible to implement numbering with periodicity (1,2,3,1,2,3)?
New contributor
Alex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.