Home  |  Latest News  |  Contribute  |  F.A.Q.  |  Account  |  Scripts | About
Search ASPNut:
 
ASP Reference
Server Variables
ASP Glossary
Related Sites

Free Components

HTML Reference
Web Colors
Entities
CSS Level 1
Encode/Decode
Glossary

Our Sponsors
ASP Nuke CMS
Free Auctions
PHP 5 Script
Funktastic Blog
ULost Directory
Team Task

 

 

 

 

 

 

 

 

 

 

 

 

<CAPTION>

The CAPTION element is used to add a caption to an HTML table. The caption may be any valid HTML that you want to appear alongside the table and typically describes the type of information found in the table.

The CAPTION tag is only valid immediately after an opening TABLE tag. Each table may only have one CAPTION element associated with it.

Attributes

Attribute Description
ID Identifies this tag to reference in script (program code)
CLASS Define the class used to render this element (defined by a style sheet)
TITLE A title that is associated with the element (displayed as a tooltip in Internet Explorer)
ALIGN [Deprecated] Specifies the position of the caption with respect to the enclosing TABLE element. May be one of: top, bottom, left, right.

Example

<TABLE BORDER=1>
<CAPTION>Days per Month</CAPTION>
<TR><TH>Month</TH><TH>Days</TH></TR>
<TR><TD>January</TD><TD>31</TD></TR>
<TR><TD>February</TD><TD>28</TD></TR>
</TABLE>

Renders As:

Days per Month
MonthDays
January31
February28

Compatibility

HTML 4.01

Return to HTML Tag Reference Overview

Orvado Technologies

ASP Nuke CMS
Free Open Source
Content Manager
HomeFix Boards
Home Remodeling
Message Boards

Contact Us | Contribute | About | Site Map



"Life is wasted on the living." - Douglas Adams

©2007 Orvado Technologies, All Rights Reserved
ASP Nut provides articles and reference documentation for Active Server Page developers.