跳到内容(1) Cob.com.cn

CodeCoke

CSS2.0中文手册·counter-reset

您的位置:首页>>教程>>CSS2.0中文手册>>counter-reset

counter-reset

版本:CSS2  兼容性:NONE 继承性:无

语法:

参数:

  1. none :  阻止计数器复位
  2. identifier number :  指定一个或多个复位的计数器

说明:

示例:

h1:before { counter-increment: main-heading; counter-reset: sub-heading; content: "Section " counter(main-heading) ":" }