Numbers with leading zero for ol lists in CSS
The value decimal-leading-zero of the property list-style-type specifies the numbering as special numbers. For them, if the digit is less than ten, then 0 is placed in front:
<ol>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ol>
ol {
list-style-type: decimal-leading-zero;
}
: