<TR ...>
<TR ...> designates a table row. Each <TR ...> element contains one or more <TD ...> or <TH ...> elements. For example, this code creates a table with two rows:
<TABLE BORDER CELLPADDING=8>
<TR> <TD>peaches</TD> <TD>grapes</TD> <TD>oranges</TD> </TR>
<TR> <TD>watermelon</TD> <TD>limes</TD> <TD>watermelon</TD> </TR>
</TABLE>
which gives us this table
| peaches | grapes | oranges |
| watermelon | limes | watermelon |
Technically the end tag (</TR>) is optional. However, Netscape has a history of getting confused when the end tag is missing so it's best to always use </TR>.
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of
the Open Content License and the Open Publication License.
Contents may be redistributed or republished freely under these terms so long as credit to the original creator and
contributors is maintained.
InMotion Web Hosting Customer Support
M-F 8am - 7pm PST
213-239-0050
More information can be found at the
InMotion Hosting Main Site
|
|
|