Re: What's allowed in table cells?

> I passed this through a parser (WebTechs validation service using the strict
> HTML 3.2 DTD) and it definetely choked:
> 
> <TABLE>
> <TR><P><TD>
> </TABLE>

That's correct. It should be
 <TABLE>
 <TR><TD><P>
 </TABLE>

You can't have a <P> outside a <TD>.

///Peter

Received on Wednesday, 25 September 1996 04:23:36 UTC