<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.
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. |
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>