I have an ordered list and I’d like to skip the number output from a particular item.
Traditional output:
1. List item
2. List item
3. List item
4. List item
5. List item
Desired output:
1. List item
2. List item
Skipped list item
3. List item
4. List item
5. List item
Is this achievable in CSS? I discovered an <ol> “start” attribute that I didn’t know about before, but doesn’t seem to help me.
Another option is to use CSS3 counters: demo
HTML
CSS