CSS计数器 - 仅与内容属性一起使用?

时间:2011-03-12 14:34:18

标签: css

根据规范,可以/将CSS计数器仅与content属性一起使用吗?

* { content: counter(mycounter) "! "; counter-increment: mycounter }

或者/它们是否也可以与其他属性一起使用,例如(随机示例)padding

/*
    is this possible?
    is this supposed to be possible?
*/
* { padding:counter(mycounter)px; }

最后,如果这是CSS的一个功能,它在浏览器中的实现程度如何?

1 个答案:

答案 0 :(得分:4)

在CSS2.1中,counter() function确实定义为仅与content属性一起使用;您不能使用计数器为其他属性指定数值。