改变前:
css代码:
ol{
height: 417px;
overflow: auto;
padding: 0;
counter-reset: sectioncounter;
> li:before {
content: counter(sectioncounter) '、'; // 把“.”修改成“、”
counter-increment: sectioncounter;
}
}
改变后:
改变前:
css代码:
ol{
height: 417px;
overflow: auto;
padding: 0;
counter-reset: sectioncounter;
> li:before {
content: counter(sectioncounter) '、'; // 把“.”修改成“、”
counter-increment: sectioncounter;
}
}
改变后: