- From: kelvSYC <kelvsyc@shaw.ca>
- Date: Fri, 25 Oct 2002 22:36:14 -0600
- To: W3 HTML Mailing List <www-html@w3.org>
When thinking of the complicated numbering scheme problem, herešs something
I thought about, although not necessarily related to the numbering scheme
problem.
Why not permit list elements to be in the content of other list elements?
Herešs what I mean. The ol and ul elements now only allow li elements,
right? Thus, to make a list inside another list, wešd have to put that in
an li element, like so:
<ul>
<li>
<ul>
<li>...</li>
</ul>
</li>
</ul>
Why not instead do this:
<ul>
<ul>
<li>...</li>
</ul>
</ul>
In some cases, this makes much more structural sense.
Received on Saturday, 26 October 2002 08:18:33 UTC