<p>foo</p>
<p>bar</p>
<p>bar</p>
<p>bar</p>
p {
counter-increment: myIndex +5;
}
p:before {
content: counter(myIndex);
}
p:last-of-type:before {
content: 'And last is: ' counter(myIndex) ' awesome ';
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.