1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<html> <head> <style> div:before { content: counter(c); } .b:before { content: "x"; } </style> </head> <body onload="document.getElementById('v').setAttribute('class', 'b');"> <div id="v"></div> </body> </html>