Re: [csswg-drafts] [css3-page] CSS counter for position fixed elements on paged media (#1879)

Getting back to OP's post, I just solved this little quirk myself.  Chrome refused to increment the counter until I called the counter reset.  Once I did that, whole thing started working.
`body {
    counter-reset: page;
}
footer {
    counter-increment: page;
}
#footer-content {
    content: counter(page);
}`

-- 
GitHub Notification of comment by BattlemageBob
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1879#issuecomment-622402114 using your GitHub account

Received on Friday, 1 May 2020 14:06:30 UTC