<COLGROUP>
The column group tag defines the layout of table cells. It may
define the number of columns through the use of SPAN attributes
or by explicit inclusion of COL elements within the COLGROUP.
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) |
SPAN |
Specifies the number of columns which should be spanned by the COLGROUP element |
WIDTH |
Defines the default width for the COLGROUP element |
|
Example
<TABLE>
<COLGROUP>
<COL>
<COL span="2">
</COLGROUP>
<TR><TD> ...
...rows...
</TABLE>
Compatibility
HTML 4.01
|