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