The <colgroup>
defines a group of columns within a table.
Content categories | None. |
---|---|
Permitted content | If the span attribute is present: none, it is an empty element.If the attribute is not present: zero or more <col> element |
Tag omission | The start tag may be omitted, if it has a <col> element as its first child and if it is not preceded by a <colgroup> whose end tag has been omitted.The end tag may be omitted, if it is not followed by a space or a comment. |
Permitted parents | A <table> element. The <colgroup> must appear after any optional <caption> element but before any <thead> , <th> , <tbody> , <tfoot> and <tr> element. |
Permitted ARIA roles | None |
DOM interface | HTMLTableColElement |
This element's attributes include the global attributes.
align
Deprecated since HTML4.01, Obsolete since HTML5
left
, aligning the content to the left of the cellcenter
, centering the content in the cellright
, aligning the content to the right of the celljustify
, inserting spaces into the textual content so that the content is justified in the cellchar
, aligning the textual content on a special character with a minimal offset, defined by the char
and charoff
attributes Unimplemented (see bug 2212).If this attribute is not set, the left
value is assumed. The descendant <col>
elements may override this value using their own align
attribute.
left
, center
, right
or justify
values: text-align
property on a selector giving a <colgroup>
element. Because <td>
elements are not descendant of the <colgroup>
element, they won't inherit it.colspan
attribute, use one td:nth-child(an+b)
CSS selector per column, where a is the total number of the columns in the table and b is the ordinal position of this column in the table. Only after this selector the text-align
property can be used.colspan
attribute, the effect can be achieved by combining adequate CSS attribute selectors like [colspan=n]
, though this is not trivial.char
value, in CSS3, you can use the value of the char
as the value of the text-align
property Unimplemented.bgcolor
black = "#000000" |
green = "#008000" | ||
silver = "#C0C0C0" |
lime = "#00FF00" | ||
gray = "#808080" |
olive = "#808000" | ||
white = "#FFFFFF" |
yellow = "#FFFF00" | ||
maroon = "#800000" |
navy = "#000080" | ||
red = "#FF0000" |
blue = "#0000FF" | ||
purple = "#800080" | teal = "#008080" | ||
fuchsia = "#FF00FF" |
aqua = "#00FFFF" |
<colgroup>
elements should be styled using CSS. To give a similar effect to the bgcolor attribute, use the CSS property background-color
on the relevant <td>
elements.char
Deprecated since HTML4.01, Obsolete since HTML5
align
is not set to char
, this attribute is ignored, though it will still be used as the default value for the align
of the <col>
which are members of this column group. char
, in CSS3, you can use the character set using the char
attribute as the value of the text-align
property Unimplemented.charoff
Deprecated since HTML4.01, Obsolete since HTML5
span
<colgroup>
element spans. If not present, its default value is 1
. span
attribute may not be present if there are one or more <col>
elements within the <colgroup>
.valign
Deprecated since HTML4.01, Obsolete since HTML5
baseline
, which will put the text as close to the bottom of the cell as it is possible, but align it on the baseline of the characters instead of the bottom of them. If characters are all of the size, this has the same effect as bottom
.bottom
, which will put the text as close to the bottom of the cell as it is possible;middle
, which will center the text in the cell;top
, which will put the text as close to the top of the cell as it is possible.vertical-align
property on a selector giving a <colgroup>
element. Because <td>
elements are not descendant of the <colgroup>
element, they won't inherit it.colspan
attribute, use the td:nth-child(an+b)
CSS selector per column, where a is the total number of the columns in the table and b is the ordinal position of the column in the table. Only after this selector the vertical-align
property can be used.colspan
attribute, the effect can be achieved by combining adequate CSS attribute selectors like [colspan=n]
, though this is not trivial.width
Obsolete since HTML5
0*
, which means that the width of each column in the group should be the minimum width necessary to hold the column's contents. Relative widths such as 0.5*
also can be used.Please see the <table>
page for examples on <colgroup>
.
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of '<colgroup>' in that specification. | Living Standard | |
HTML5 The definition of '<colgroup>' in that specification. | Recommendation | |
HTML 4.01 Specification The definition of '<colgroup>' in that specification. | Recommendation |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1 | Yes | 1 | Yes | Yes | Yes |
align |
? | Yes | No1 | Yes | ? | ? |
bgcolor |
? | No | No | Yes | ? | ? |
char |
? | Yes | No2 | Yes | ? | ? |
charoff |
? | Yes | No2 | Yes | ? | ? |
span |
1 | Yes | 1 | Yes | Yes | Yes |
valign |
? | Yes | No1 | Yes | ? | ? |
width |
1 | Yes | 1 | Yes | Yes | Yes |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | 4 | Yes | Yes | Yes |
align |
? | ? | Yes | No1 | Yes | ? | ? |
bgcolor |
? | ? | No | No | Yes | ? | ? |
char |
? | ? | Yes | No2 | Yes | ? | ? |
charoff |
? | ? | Yes | No2 | Yes | ? | ? |
span |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
valign |
? | ? | Yes | No1 | Yes | ? | ? |
width |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
1. See bug 915
2. See bug 2212
<caption>
, <col>
, <table>
, <tbody>
, <td>
, <tfoot>
, <th>
, <thead>
, <tr>
;<col>
element: width
property to control the width of the column;:nth-child
pseudo-class to set the alignment on the cells of the column;text-align
property to align all cells content on the same character, like '.'.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup