Den 29 Sep 99, klockan 12:19
skrev Rob Curts om (Re: [PHP3] PHP & MySQL no display i):
> I have run into this problem before using Tables. IE will compensate for a
> missing </table>,</td>, or </tr> Tag.
>
> Be sure to check your code for table closing elements.
>
Well, according to W3C you shouldn't need any closing </td> or </tr> tags.
Look at:
http://www.w3.org/TR/REC-html40/struct/tables.html#h-11.1
Here's a simple table that illustrates some of the features of the HTML table model.
The following table definition:
<TABLE border="1"
summary="This table gives some statistics about fruit
flies: average height and weight, and percentage
with red eyes (for both males and females).">
<CAPTION><EM>A test table with merged cells</EM></CAPTION>
<TR><TH rowspan="2"><TH colspan="2">Average
<TH rowspan="2">Red<BR>eyes
<TR><TH>height<TH>weight
<TR><TH>Males<TD>1.9<TD>0.003<TD>40%
<TR><TH>Females<TD>1.7<TD>0.002<TD>43%
</TABLE>
/Peter