Re: validator probs?

Hi bas, on Mon, 17 May 2004 16:39:36 +0200 you wrote:

> It seems that the new validator has some problems with the nested UL
> tags

No, your code is wrong. The sub-<ul>s have to go *inside* the <li> to
which they relate.

> <ul>
>          <li>ping</li>
>          <li>pong</li>
>          <ul>
>                  <li>extra</li>
>          </ul>
> </ul>

Change this to:

<ul>
	<li>ping</li>
	<li>pong
		<ul>
			<li>extra</li>
		</ul>
	</li>
</ul> 

Received on Wednesday, 19 May 2004 05:14:31 UTC