Category: Tables | Previous: TABLE | Next: TR

<CAPTION>

Description:

A table caption. The caption element encloses a description for the table.

Syntax:

<CAPTION> ... </CAPTION>

Attributes:

Attribute Value Description
None

Notes:

Example:

<TABLE WIDTH="50%" BORDER="1" CELLSPACING="3" CELLPADDING="3">
<CAPTION> Sample Table </CAPTION>
<TR><TD> CELL 1 </TD><TD> CELL 2 </TD></TR>
<TR><TD> CELL 3 </TD><TD> CELL 4 </TD></TR>
</TABLE>


Sample Table
CELL 1 CELL 2
CELL 3 CELL 4

Index: HTML Reference | Previous: BR | Next: CENTER