我正在制作一个自定义 ol>li 看起来像这样
1 | 列出内容
2 | 列出内容
3 | 列出内容
我引用了这篇文章:HTML + CSS:没有句点的有序列表?
但是,我无法让数字出现,并且在遵循标准数字计数时,它们需要不带句点出现。
这是我的代码:
#content ol > li:before{
content: counter(customlistcounter) " |";
counter-increment: customlistcounter;
margin-left: -21px;
float: left;
width: 1em;
}
#content ol li{
padding-left: 21px;