<TD ...>

Usage Recommendation
use it if you use <TABLE ...>

  • ALIGN: horizontal alignment of cell contents
  • VALIGN: vertical alignment of cell contents
  • WIDTH: width of cell
  • HEIGHT: height of cell
  • COLSPAN: number of columns to cover
  • ROWSPAN: number of rows to cover
 

<TD ...> and </TD> set a single table cell.

<TABLE>
<TR>
<TD>peaches</TD>
<TD>cherries</TD>
</TR>
<TR>
<TD>walnuts</TD>
<TD>almonds</TD>
</TR>
</TABLE>

gives us this table:

peaches cherries
walnuts almonds




About the Author
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.