I'm trying to style the numbers in a ordered list, I'd like to add background-color, border-radius and color so they match the design I'm working from:
I guess it's not possible and I'll have to use different images for each number i.e.
ol li:first-child {list-style-image:url('1.png')};
ol li:nth-child(2) {list-style-image:url('2.png');}
etc...
Is there a simpler solution?