How would I achieve different styles for say, every third page?
Like the following CSS pseudo-selector, but for pages:
I have tried @page:nth(3), but that selects only the third page, not every third page.
Like the following CSS pseudo-selector, but for pages:
ul li:nth-child(3n+3) {
color: #ccc;
}
I have tried @page:nth(3), but that selects only the third page, not every third page.