TABLE Element
HTML Tables are contained within the
<TABLE> and </TABLE>
tags. The <TABLE> tag denotes the range of the
table, and defines properties of it.
The attribute BORDER indicates that the table should be drawn with a border
around it and between each of the table's cells -- in the notation
of tables, each box within the table is called a cell.
The only two elements allowed inside a table are CAPTION, and TR.
- CAPTION defines a table caption, and can take one attribute
-- ALIGN -- to define where the caption should be placed.
Possible values are
- "top",
- "bottom",
- "left",
- "right".
- TR defines a Table Row -- a table is composed of any number of rows. Each
row in turn contains TD (table data) or TH (table header) cells. The
number of TD or TH elements defines the number of columns in the table,
while the number of TR elements defines the number of rows. In general, TD
elements are used for data, while TH elements are used for row or column
headings.