html
<ol>
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
<li>Fourth Item</li>
<li>Fifth Item</li>
<li value="11">Eleventh Item</li>
<li>Twelfth Item</li>
</ol>
css
ol{
list-style-type: decimal-leading-zero;
}
See the Pen 在有序列表`<ol></ol>` 中将零添加到一位数前面 by liu874396180 ( @liu874396180) on CodePen.