Is it possible to lose the dot when using "list-style-type:decimal-leading-zero;"
I found a solution to lose the dot, but then I can't add the leading zero.
ol {
counter-reset: item;
list-style-type: decimal-leading-zero;
}
li { display: block; }
li:before {
content: counter(item) " ";
counter-increment: item
}