- From: Dara Keon via GitHub <sysbot+gh@w3.org>
- Date: Wed, 22 Jul 2020 01:17:46 +0000
- To: public-css-archive@w3.org
@BattlemageBob, for me, firefox shows the total page counting at first page and nothing else at others. At chrome, always 1 at every page.
```css
body
{
counter-reset: page;
}
footer
{
counter-increment: page;
position: fixed;
}
footer::before
{
content: counter(page);
}
```
--
GitHub Notification of comment by darakeon
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1879#issuecomment-662186554 using your GitHub account
Received on Wednesday, 22 July 2020 01:17:47 UTC