Posted by Steve Pugh on 02/03/06 18:00
Simon Dean wrote:
> I would be interested to know if it's possible to have embedded lists...
> it appears W3C.org does not allow it,
Of course they do. Remember that the only allowed children of ul/ol are
li elements. But that li elements can contain any block level elements.
>so Im looking for a solution to
> that particular problem if possible.
Nest your lists properly.
> I'm guessing it just means separate <LI> element definitions.
Not sure what you meanb by this, but if you mean doing
<ul>
<li></li>
<li>
<ul>
<li></li>
</ul>
</li>
</ul>
intead of
<ul>
<li></li>
<ul>
<li></li>
</ul>
</ul>
Then you're on the right tracks.
Steve
[Back to original message]
|