Re: CSS 2.1: counter-reset in :before elements

On Thursday 2005-04-07 23:48 +0200, Allan Sandfeld Jensen wrote:
> 
> The issue regards counter-reset in :before elements such as this (taken from 
> the CSS 2.1 specification):
> H1:before {
>     content: "Chapter " counter(chapter) ". ";
>     counter-increment: chapter;  /* Add 1 to chapter */
>     counter-reset: section;      /* Set section to 0 */
> }
> H2:before {
>     content: counter(chapter) "." counter(section) " ";
>     counter-increment: section;
> }

This example is wrong, and will be corrected in the next public draft of
CSS2.1 (along with a lot of other clarifications to counters).

-David

-- 
L. David Baron                                <URL: http://dbaron.org/ >
          Technical Lead, Layout & CSS, The Mozilla Foundation

Received on Thursday, 7 April 2005 22:01:44 UTC