Forum Bugs

Chaining @page selectors

prince.eggs
From my reading of the draft spec, I can't understand if this is valid. It seems intuitive enough as I tried it first before discovering it does not work:

@page:first,
@page:nth(2) {
...
}
mikeday
You don't need to repeat the @page, just the selector part:
@page :first, :nth(2) {
}
prince.eggs
Thank you mike. *