- From: Christoph Päper <christoph.paeper@crissov.de>
- Date: Mon, 2 May 2011 00:53:53 +0200
- To: www-style list <www-style@w3.org>
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