RE: Deprecated value attribute

> In brief:
>    Automatic Numbering:
> 	LI:before
> 
> 	      display: marker;
> 	      content: counter(mycounter, lower-roman) ".";
> 	      counter-increment: mycounter;
> 	  }
> 
>    Manual Numbering:
> 	LI:before
> 
> 	      display: marker;
> 	      content: "i."
> 	  }
> 
> ,David Norris
> 

That results in a double counter, as of ordered list in Firefox: 
one inserted by the HTML engine and the other by the CSS engine.

Chris

Received on Thursday, 24 January 2008 12:53:15 UTC