ol li 不显示编号

第一种可能性是样式重置导致

去掉list-style:none;

第二种可能性是设置了*{margin:0;padding:0}

可以在需要的位置加上margin-left:10px;(根据自己需要设定)
有序列表需要一定的边距才可以设置的

        ul>li{
            margin-left:30px;
            list-style-type: disc;
        }
        ol>li{
            margin-left: 30px;
            list-style: decimal;
        }
原文地址:https://www.cnblogs.com/why98/p/12243255.html