首页  >  取值与单位 Values and Units  >  文本(Textual)  >  <identifier>

版本 : CSS2 <identifier>

说明:

使用用户自定义标识名作为组件取值。
  • 自定义标识区分大小写,例如test与TEST是2个不同的值
  • 自定义标识不能使用与CSS属性及属性值相同的名字
  • 正常工作的例子:

    示例代码:

    li {
    	counter-increment: testname;
    }
    li {
    	counter-reset: testname2;
    }
    @keyframes testanimations {
    	from { opacity:1; }
    	to { opacity:0; }
    }
  • 无法工作的例子:

    示例代码:

    li {
    	counter-increment: border;
    }
    li {
    	counter-reset: background;
    }
    @keyframes auto {
    	from { opacity:1; }
    	to { opacity:0; }
    }