Things to Note
- The default TABLE has no borders
By default, tables are drawn without border lines. You need the BORDER
attribute to draw the lines.
- If table values are not lining up the way you had intended them to,
turn on the BORDER attribute so you can see exactly what is happening.
It makes the job easier for debugging.
- By default, a table is flush with the left margin
TABLEs are plopped over on the left margin. If you want centered tables,
place it
inside a <CENTER>...</CENTER> element.
- Some browsers support table alignment, using the ALIGN attribute.
Allowed values are "left" or "right", for example:
<TABLE ALIGN="left">. The values "left" and "right"
float the table to the left or right of the page, with text flow allowed
around the table. This is entirely equivalent to IMG alignment.