CSS counter-reset 屬性
實(shí)例
對(duì)部分和子部分進(jìn)行編號(hào)(比如 "Section 1"、"1.1"、"1.2")的方法:
body
{
counter-reset:section;
}
h1
{
counter-reset:subsection;
}
h1:before
{
counter-increment:section;
content:"Section " counter(section) ". ";
}
h2:before
{
counter-increment:subsection;
content:counter(section) "." counter(subsection) " ";
}
{
counter-reset:section;
}
h1
{
counter-reset:subsection;
}
h1:before
{
counter-increment:section;
content:"Section " counter(section) ". ";
}
h2:before
{
counter-increment:subsection;
content:counter(section) "." counter(subsection) " ";
}
嘗試一下 ?
屬性定義及使用說(shuō)明
counter-reset屬性創(chuàng)建或重置一個(gè)或多個(gè)計(jì)數(shù)器。
counter-reset屬性通常是和counter-increment屬性,content屬性一起使用。
默認(rèn)值: | none |
---|---|
繼承: | no |
版本: | CSS2 |
JavaScript 語(yǔ)法: | object.style.counterReset="subsection" |
瀏覽器支持
所有主流瀏覽器都支持counter-reset屬性。
注意: IE8只有指定!DOCTYPE才支持counter-reset屬性。
屬性值
值 | 說(shuō)明 |
---|---|
none | 默認(rèn)。不能對(duì)選擇器的計(jì)數(shù)器進(jìn)行重置 |
id number | id 定義重置計(jì)數(shù)器的選擇器、id 或 class。 number 可設(shè)置此選擇器出現(xiàn)次數(shù)的計(jì)數(shù)器的值??梢允钦龜?shù)、零或負(fù)數(shù)。 |
inherit | 規(guī)定應(yīng)該從父元素繼承 counter-reset 屬性的值 |
相關(guān)文章
CSS reference: :before 偽元素
CSS reference: :after 偽元素
CSS reference: content 屬性
CSS reference: counter-increment 屬性
更多建議: