According to spec, can / will CSS counters are used only in conjunction with the content property?
* { content: counter(mycounter) "! "; counter-increment: mycounter }
Or can other properties be / will be used, such as (random example) padding ?
* { padding:counter(mycounter)px; }
Finally, if this is a feature of CSS, how much is it implemented in browsers?
source share