私は私の質問からのよう<li>
に私の下から - 要素に文字を追加したい:<ol>
body { counter-reset: item; }
ol.numbered_style li:before
{
counter-increment:item;
margin-bottom:5px;
margin-right:10px;
content:counter(item);
background:blue;
border-radius:100%;
color:white;
width:1.2em;
text-align:center;
display:inline-block;
}
ol.numbered_style.start_3{
counter-reset: item 2;
}
ol.none, ul.none,ol.numbered_style { list-style: none; }
<ol class="numbered_style">
<li>first</li>
<li>second</li>
<li>third Lorem Ipsum
<ol class="numbered_style start_3">
<li>missing an a after the number</li>
<li>missing a b after the number</li>
<li>missing a c after the number</li>
</ol>
</li>
</ol>
li::before { content: " a ";}
ませんでした。また、2番目のカウンターを追加すると、次のような英数字パターンで次の要素を生成できるソリューションも必要ですlist-style-type: lower-alpha;