- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Wed, 21 Apr 2021 14:46:37 +0000
- To: public-css-archive@w3.org
Loirooriol has just created a new issue for https://github.com/w3c/csswg-drafts: == [css-lists] `<reversed-counter-name> <integer>` seems useless == #6096 added the `reversed()` syntax to the `counter-reset` property. However, unless I'm missing something, these are totally equivalent: ```css counter-reset: c 7; counter-reset: reversed(c) 7; ``` The only difference is that the latter [instantiates](https://drafts.csswg.org/css-lists/#instantiate-counter) the counter with a *reversed* flag, but this flag only seems relevant in these cases: - When omitting the starting value (it's `7` in the example) - In the implicit `list-item` counter (it's `c` in the example) So IMO we have two reasonable possibilities: - Drop the useless `<reversed-counter-name> <integer>` syntax, and just keep `<reversed-counter-name>`. Also drop the *reversed* flag of the counter, since we can already identify reversed counters due to the lack of a starting value. The preshint for reversed HTML lists would be: ```css ol[reversed] { counter-reset: reversed(list-item); } ol[reversed][start] { counter-reset: list-item calc(attr(start integer) + 1); } ``` - Keep `<reversed-counter-name> <integer>`, but then negate increments not just to `list-item` but to all counters. That is, `list-item` counters would get `counter-increment: list-item 1` by default, not -1 for reversed lists. And when incrementing a reversed counter, the specified amount would actually be decremented. So ```html <style> #parent { counter-reset: reversed(c) 7; } #parent > .child { counter-increment: c 2 } /* Decrements since the counter is reversed */ #parent > .child::before { content: counter(c) ". " } </style> <div id="parent"> <div class="child">foo</div> <div class="child">bar</div> </div> ``` would look like ``` 5. foo 3. bar ``` The latter seems more useful for authors, and makes `list-item` less magic. Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6231 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 21 April 2021 14:46:48 UTC