Little Web Hut

HTML 4.01 and XHTML 1.0 Reference: <colgroup> Tag

HTML <colgroup> Tag - Table Column Group
Syntax This element uses separate opening and closing tags.
<colgroup>...</colgroup>
Usage The <colgroup> tag allows structural divisions to be created within a table. The <colgroup> tag allows styles or HTML attributes to be applied to one or more columns, all at the same time. If used, place the <colgroup> tag before any <thead>, <tfoot>, <tbody>, or <tr> tags within the table. Also, if a <caption> tag is used, the <colgroup> tag should occur after it.

A table may contain more than one <colgroup> tag. The number of columns in a colgroup is determined either by the use of the <colgroup> tag's span attribute, or by using <col> tags between the opening and closing <colgroup> tags.

HTML & XHTML <colgroup> example using the span attribute to set the number of columns.
<table border="1" summary="Stock Performance">
 <caption>Stock Tracker</caption>
 <colgroup span="2" width="300"></colgroup>
  <tr>
   <th>Stock Symbol</th>
   <th>Profit</th>
  </tr>
  <tr>
   <td>MSFT</td>
   <td>$723.48</td>
  </tr>
  <tr>
   <td>GOOG</td>
   <td>$1254.58</td>
  </tr>
</table>
Test It HTML StyleTest It XHTML Style

HTML <colgroup> example using <col> tags to set the number of columns.
<table border="1" summary="Stock Performance">
 <caption>Stock Tracker</caption>
 <colgroup>
  <col width="200">
  <col width="300">
 </colgroup>
  <tr>
   <th>Stock Symbol</th>
   <th>Profit</th>
  </tr>
  <tr>
   <td>MSFT</td>
   <td>$723.48</td>
  </tr>
  <tr>
   <td>GOOG</td>
   <td>$1254.58</td>
  </tr>
</table>
Test It HTML Style

XHTML <colgroup> example using <col> tags to set the number of columns.
<table border="1" summary="Stock Performance">
 <caption>Stock Tracker</caption>
 <colgroup>
  <col width="200" />
  <col width="300" />
 </colgroup>
  <tr>
   <th>Stock Symbol</th>
   <th>Profit</th>
  </tr>
  <tr>
   <td>MSFT</td>
   <td>$723.48</td>
  </tr>
  <tr>
   <td>GOOG</td>
   <td>$1254.58</td>
  </tr>
</table>
Test It XHTML Style

Content Model The <colgroup> element can contain the following tags between its opening and closing tags.

<colgroup> Tag Attribute Summary
Required Tag Specific Core Focus Events Language
  align char charoff span valign width id class style title   onclick ondblclick onkeydown onkeypress onkeyup onmousedown onmousemove onmouseout onmouseover onmouseup dir lang xml:lang1
Notes: 1. XHTML only.

<colgroup> Tag Attributes
Attribute Description
alignThe align attribute specifies the horizontal alignment within a cell. Possible values are "center", "char", "justify", "left", and "right".
charThe char attribute specifies a single character to act as an alignment character when the align attribute is set to "char". The default character for this attribute is the decimal point.

Note: This attribute may have little or no browser support among popular browsers.
charoffThe charoff attribute specifies an offset to the first occurrence of the alignment character, which is specified by the char attribute.

Note: This attribute may have little or no browser support among popular browsers.
spanThe span attribute specifies the number of columns in the colgroup.

HTML & XHTML <colgroup> example using the span attribute to set the number of columns.
<table border="1" summary="Stock Performance">
 <caption>Stock Tracker</caption>
 <colgroup span="2" width="300"></colgroup>
  <tr>
   <th>Stock Symbol</th>
   <th>Profit</th>
  </tr>
  <tr>
   <td>MSFT</td>
   <td>$723.48</td>
  </tr>
  <tr>
   <td>GOOG</td>
   <td>$1254.58</td>
  </tr>
</table>
Test It HTML StyleTest It XHTML Style

valignThe valign attribute specifies the vertical alignment within a cell. Possible values are "baseline", "bottom", "middle", and "top".
widthThe width attribute specifies the default column width for the columns in the group. The value of the width attribute can be specified in pixels, percentage, or relative size.

Example using pixels:
<colgroup width="300"></colgroup>

Example using percentage:
<colgroup width="30%"></colgroup>

Example using relative size:
<colgroup width="2*"></colgroup>

Example using relative size to set the width to match the column's contents:
<colgroup width="0*"></colgroup>
idThe id attribute assigns a unique name to a tag. This allows style sheets or scripts to reference the tag. See id Example
classThe class attribute assigns a class name to a tag. The class name does not need to be unique. More than one tag can have the same class name. This allows style sheets or scripts to reference multiple tags with a single class name. See class Example
styleThe style attribute specifies styles for the tag. For Cascading Style Sheets (CSS), the syntax is name:value. Each name:value pair is separated by semicolons. See style Example
titleThe title attribute specifies additional information about the tag. It is common for browsers to display the title when the pointing device stops over the object. See title Example
onclickThe onclick attribute specifies a script to be run when the object is clicked with a mouse or other pointing device. See onclick Example
ondblclickThe ondblclick attribute specifies a script to be run when the object is double clicked with a mouse or other pointing device. See ondblclick Example
onkeydownThe onkeydown attribute specifies a script to be run when a key is pressed down. See onkeydown Example
onkeypressThe onkeypress attribute specifies a script to be run when a key is pressed and released. See onkeypress Example
onkeyupThe onkeyup attribute specifies a script to be run when a key is released. See onkeyup Example
onmousedownThe onmousedown attribute specifies a script to be run when the mouse button, or other pointing device button, is pressed while over the object. See onmousedown Example
onmousemoveThe onmousemove attribute specifies a script to be run when the mouse, or other pointing device, is moved while it is over the object. See onmousemove Example
onmouseoutThe onmouseout attribute specifies a script to be run when the mouse, or other pointing device, is moved away from an object after being over it. See onmouseout Example
onmouseoverThe onmouseover attribute specifies a script to be run when the mouse, or other pointing device, is moved onto the object. See onmouseover Example
onmouseupThe onmouseup attribute specifies a script to be run when the mouse button, or other pointing device button, is released while over the object. See onmouseup Example
dirThe dir attribute tells the browser whether the text should be displayed from left-to-right or right-to-left. It does not reverse the direction of the characters, like the <bdo> tag does, but it can help the browser to determine if the text should be aligned on the left side or the right side. See dir Example
langThe lang attribute specifies a language. This attribute can help the browser to correctly display text. This attribute can also be useful for braille translation software, speech synthesizers, dictionary definitions, etc. See lang Example
xml:langThe xml:lang attribute specifies a language for XHTML documents. This attribute can help the browser to correctly display text. This attribute can also be useful for braille translation software, speech synthesizers, dictionary definitions, etc. See xml:lang Example

Note: XHTML only.

HTML <colgroup> Tag Examples
Test It HTML StyleTest It HTML Style<colgroup> example using the span attribute to set the number of columns.
Test It HTML StyleTest It HTML Style<colgroup> example using <col> tags to set the number of columns.