如何删除点 '.'来自 CSS 列表样式:十进制

How to remove dot '.' from CSS list-style:decimal

有什么办法可以去掉List样式中小数点后面的DOT吗?

我的CSS

.snum li {list-style:decimal outside none;}

我得到的结果是这样的(不包括 PHP 和 HTML 代码)

1. MILK
2. SOYA
3. BEANS
4. GARLIC

期望的输出应该是这样的。

1 MILK
2 SOYA
3 BEANS
4 GARLIC

您可以通过在有序列表中的每个 <li> 之前实现一个自定义计数器作为伪元素来做到这一点:

HTML:

<ol>
    <li>STUFF</li>
    <li>Stuff</li>
    <li>Stuff</li>
</ol>

CSS:

ol
{
    list-style: none;
    margin-left: 0;
}

li
{
    counter-increment: custom;
}

ol li:before
{
    content: counter(custom) " ";   
}

ol li:first-child {
    counter-reset: custom;
}

JSFiddle