Posted by Els on 10/06/06 14:16
John Salerno wrote:
> I got this error while validating my page:
>
> document type does not allow element "UL" here; assuming missing "LI"
> start-tag.
>
> Here's the suspicious code. The problem seems to be that I can't nest
> list blocks within other list blocks. But if not, how can I create this
> "subnote" effect?
Your code:
> <ol>
> <li>....</li>
> <li>....</li>
> <ul>
> <li>....</li>
> </ul>
> <li>....</li>
> </ol>
Correct code:
<ol>
<li>....</li>
<li>....
<ul>
<li>....</li>
</ul>
</li>
<li>....</li>
</ol>
--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/
Now playing: Annie Lennox - Little Bird
Navigation:
[Reply to this message]
|