HTML Reference Guide
CAPTION
<CAPTION
ALIGN=CENTER|LEFT|RIGHT
VALIGN=TOP|BOTTOM>
</CAPTION>
Specifies a caption for a table. This element is valid only within the TABLE element. The end-tag is required.
- ALIGN=CENTER|LEFT|RIGHT
- Sets the alignment of the caption to the table. The default is CENTER.
| CENTER |
The caption is centered above the margins of the table. |
| LEFT |
The caption is aligned to the left side of the table. |
| RIGHT |
The caption is aligned to the right side of the table. |
- VALIGN=TOP|BOTTOM
- Sets the vertical alignment of the table caption. The default is TOP.
| TOP |
The caption is at the top of the table. |
| BOTTOM |
The caption is at the bottom of the table. |
Example
<TABLE>
<CAPTION VALIGN=BOTTOM>
This caption will appear below the table.
</CAPTION>
<TR>
....
</TR>
</TABLE>