I have this HTML:
<ul>
    <li data-icon="">1</li>
</ul>
And CSS:
[data-icon]:before {
    content: attr(data-icon);
    ...
}
I would like to increment this value . Is the next logical progression of this value ? And so on until ,,, etc.?
Edit:
The purpose is to traverse the entirety of the font icon collection I'm working with.
 
    