Modify the style of "." displayed by default in front of the label ol

Before change:

css code:

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

After changing:

Guess you like

Origin blog.csdn.net/m0_56276571/article/details/125913437