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

```
@page {
 counter-increment: page;
}

body {
 counter-reset: page;
}

.pagination {
 position: fixed;
 top: 0;
}

.pagination::before {
 content: counter(page);
}
```

Firefox: prints zero at first page, nothing on the others
Chrome: prints zero at all pages

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

Received on Friday, 24 July 2020 23:07:48 UTC