 |
Saturday, May 17, 2008 
<CAPTION> ... </CAPTION>
|
DEFINITION
<CAPTION> ... </CAPTION> tag is used in captioning a <TABLE>, and can either precede or follow the table. The location of the caption can be indicated with the ALIGN attribute. A table caption is usually both centered and in boldface type or otherwise emphasized by the browser. |
SUGGESTED STYLE/USAGE The <CAPTION> tag should directly follow the <TABLE> tag and precede the first <TR>. You can use all text-level markup inside a <CAPTION>. Keep it brief; try to avoid using images or large blocks of text. |
EXAMPLE <BODY> <TABLE> <CAPTION>This will be the CAPTION for your table.</CAPTION> <TR> ..... </TR> </TABLE> </BODY>
|
 |
 |