如何更新目录页码
发布网友
发布时间:2023-01-07 08:37
我来回答
共1个回答
热心网友
时间:2023-10-19 23:30
使用CSS属性counter-reset可以重置目录页码,方法是在目录的父元素中设置counter-reset:counterName,然后在目录的子元素中设置counter:counterName,例如:
<style type="text/css">
ol {counter-reset: page;}
li {counter-increment: page;}
li:before {content:"Page " counter(page) ". ";}
</style>拓展:如果要让目录页码从特定的页码开始,可以使用属性counter-reset:counterName,start,来设置起始页码,例如:
<style type="text/css">
ol {counter-reset: page 5;}
li {counter-increment: page;}
li:before {content:"Page " counter(page) ". ";}
</style>