Re: [css3-lists] [css3-speech] Interaction between list-style-type and speak properties

Tab Atkins Jr.:
> <ol>
>   <li><span class=marker>A.</span> foo
>   <li><span class=marker>B.</span> bar
> </ol>
> 
> .marker { display: marker; }
> ol { list-style-type: inline; }

Should this or something like it work, too?

  <ol>
    <li value="A."> foo
    <li value="B."> bar
  </ol>

  li[value]::before {content: attr(value); display: marker; }
  ol { list-style-type: inline; }

Received on Sunday, 1 May 2011 22:54:21 UTC