[Top] -- HTML Documentation Table of Contents

Tables

No notation:
3.0:
HTML 2.0
HTML 3.0 tag
N1.0:
N1.1:
N2.0:
Netscape extension with Navigator 1.0
Netscape extension with Navigator 1.1
Netscape extension with Navigator 2.0

3.0 Define Table
<table></table>
3.0 Table Border (either on or off)
<table border></table>
N1.1 Table Border (you can set the value)
<table border=?></table>
N1.1 Cell Spacing
<table cellspacing=?>
N1.1 Cell Padding
<table cellpadding=?>
N1.1Desired Width (in pixels)
<table width=?>
N1.1 Width Percent (percentage of page)
<table width=%>
3.0 Table Row
<tr></tr>
3.0 Alignment
<tr align=left>
<tr align=right>
<tr align=center>
<tr valign=top>
<tr valign=middle>
<tr valign=bottom>
3.0No Linebreaks
<td nowrap>
3.0 Alignment
<td align=left>
<td align=right>
<td align=center>
<td valign=top>
<td valign=middle>
<td valign=bottom>
3.0No Linebreaks
<td nowrap>
3.0Columns to Span
<td colspan=?>
3.0Rows to Span
<td rowspan=?>
N1.1Desired Width (in pixels)
<td width=?>
N1.1Width Percent (percentage of table)
<td width=%>
3.0Table Header (same as data,except bold centered)
<th></th>
3.0Alignment
<th align=left>
<th align=right>
<th align=center>
<th valign=top>
<th valign=middle>
<th valign=bottom>
3.0No Linebreaks
<th nowrap>
3.0Columns to Span
<th colspan=?>
3.0Rows to Span
<th rowspan=?>
N1.1Desired Width (in pixels)
<th width=?>
N1.1Width Percent (percentage of table)
<th width=%>
3.0Table Caption
<caption></caption>
3.0Alignment (above/below table)
<caption align=top>
<caption align=bottom>

[Top] -- HTML Documentation Table of Contents