RE: Deprecated value attribute

> The value attribute for LI is deprecated in HTML 4.0, but I can't
find
> a replacement in CSS 2.  Is there a replacement out there that I'm
> missing?

12.5 and 12.6 explains automatic and manual counters.
http://www.w3.org/TR/REC-CSS2/generate.html#counters

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

World Wide Web - http://www.webaugur.com/dave
Page via mail - 412039@pager.mirabilis.com
ICQ Universal Internet Number - 412039
E-Mail - dave@webaugur.com

Received on Thursday, 30 September 1999 03:43:00 UTC