I want to display list items with a prefix, like:
ML-1. ..........................
...................
ML-2. ........
ML-3. ...................
............
ML-100. .........................
............
Is it possible? I tried to use li:before { content: "ML-" counter(item) ". "; } however it seems like not supported well in many browsers. And I can’t make the numbers right aligned.
I’m pretty sure that isn’t possible. Your best bet would be to use a blank-styled unordered list and put the prefix in the body of each LI.