词条 | counter-increment |
释义 | 定义属性设置某个选取器每次出现的计数器增量。默认增量是 1。 如果使用了 "display: none",则无法增加计数。如使用 "visibility: hidden",则可增加计数。 继承性:NO 利用这个属性,计数器可以递增(或递减)某个值,这可以是正值或负值。如果没有提供 number 值,则默认为 1。 JavaScript 语法CSS 属性也可通过一段 JavaScript 被动态地改变。 object.style.counterIncrement="section 2" 例子A way to number sections with "Section 1", "Section 2", "Section 3"etc.: h1:before {content: "Section " counter(section) " ";/* Add 1 to section */counter-increment: section; }A way to number sections with "Section 1", "Section 3", "Section 5" etc.:h1:before {content: "Section " counter(section) " ";/* Add 2 to section */counter-increment: section 2; } |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。