- From: BattlemageBob via GitHub <sysbot+gh@w3.org>
- Date: Fri, 01 May 2020 14:06:28 +0000
- To: public-css-archive@w3.org
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