Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 1114671 of <th>

  • Revision slug: Web/HTML/Element/th
  • Revision title: <th>
  • Revision id: 1114671
  • Created:
  • Creator: mientje
  • Is current revision? No
  • Comment

Revision Content

The HTML element table header cell <th> defines a cell as header of a group of table cells. This group is defined by the {{htmlattrxref("scope", "th")}} and {{htmlattrxref("headers", "th")}} attributes.

Usage context

Content categories None.
Permitted content
Phrasing content.
Tag omission The start tag is mandatory.
The end tag may be omitted, if it is immediately followed by a {{HTMLElement("th")}} or {{HTMLElement("td")}} element or if there are no more data in its parent element.
Permitted parent elements A {{HTMLElement("tr")}} element.
Normative document HTML5, section 4.9.10 (HTML4.01, section 11.2.6)

Attributes

This element includes the global attributes.

{{htmlattrdef("abbr")}} {{obsolete_inline}} in {{HTMLVersionInline("5")}}
This attribute contains a short abbreviated description of the cell's content. A user-agent (e.g., a speech reader)  may be present in front of the description.
Note: Do not use this attribute as it has become obsolete in the latest standard. Alternatively, you can put the abbreviated description inside the cell and place the long content in the title attribute.
{{htmlattrdef("align")}} {{Deprecated_inline}} in {{HTMLVersionInline("4")}}, {{obsolete_inline}} in {{HTMLVersionInline("5")}}
This enumerated attribute specifies how the cell content's horizontal alignment will be handled. Possible values are:
  • left, the content is aligned to the left of the cell
  • center, the content is centered in the cell
  • right,  the content is aligned to the right of the cell 
  • justify, (with text only) the content is stretched out inside the cell so that it covers its entire width
  • char, (with text only) the content is aligned to a character inside the <th> element with minimal offset and defined by {{htmlattrxref("char", "th")}} and {{htmlattrxref("charoff" attributes {{unimplemented_inline("2212")}}.

The left value is default when this attribute is not specified.

Note: Do not use this attribute as it is no longer supported in the latest standard.
  • To achieve the same effect as the left, center, right or justify values, apply the CSS {{cssxref("text-align")}} property to the attribute.
  • To achieve the same effect as the char value, give the {{cssxref("text-align")}} property the same value you would use for the {{htmlattrxref("char", "th")}}.  {{unimplemented_inline}} in CSS3,.
{{htmlattrdef("axis")}} {{obsolete_inline}} in {{HTMLVersionInline("5")}}
This attribute contains a list of space-separated strings. Each string is the id of a group of cells that this header applies to.
Note: Do not use this attribute as it is obsolete in the latest standard: use the {{htmlattrxref("scope", "th")}} attribute instead.
{{htmlattrdef("bgcolor")}} {{Non-standard_inline}}
This attribute defines the background color of each cell in a column. It consists of a 6-digit hexadecimal code as defined in sRGB and is prefixed by '#'. This attribute may be used with one of sixteen predefined color strings:
  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"
Usage note: Do not use this attribute, as it is non-standard and only implemented in some versions of Microsoft Internet Explorer: the {{HTMLElement("th")}} element should be styled using CSS. To create a similar effec use {{cssxref("background-color")}} property in CSS.
{{htmlattrdef("char")}} {{Deprecated_inline}} in {{HTMLVer
..sionInline("4")}}, {{obsolete_inline}} in {{HTMLVersionInline("5")}}
This attribute is used to set the character to align the cells in a column on. Typical values for this include a period (.) when attempting to align numbers or monetary values. If {{htmlattrxref("align", "th")}} is not set to char, this attribute is ignored.
Note: Do not use this attribute as it is no longer supported) in the latest standard. To achieve the same effect as the {{htmlattrxref("char", "thead")}}, in CSS3, you can use the character set using the {{htmlattrxref("char", "th")}} attribute as the value of the {{cssxref("text-align")}} property {{unimplemented_inline}}.
{{htmlattrdef("charoff")}} {{Deprecated_inline}} in {{HTMLVersionInline("4")}}, {{obsolete_inline}} in {{HTMLVersionInline("5")}}
This attribute is used to indicate the number of characters to offset the column data from the alignment characters specified by the char attribute.
Note: Do not use this attribute as it is no longer supported) in the latest standard.
{{htmlattrdef("colspan")}}
This attribute contains a positive integer value that indicates over how many columns a cell extends. Its default value is 1. If its value is set to 0, the cell is extended to the last element of the {{HTMLElement("colgroup")}}. Values higher than 1000 are clipped down to 1000.
{{htmlattrdef("headers")}}
This attribute contains a list of space-separated strings, each corresponding to the id attributes of other {{HTMLElement("th")}} elements that relate to this element.
{{htmlattrdef("rowspan")}}
This attribute contains a positive integer value that indicates over how many rows a cells extends. Its default value is 1. If its value is set to 0, the cell is extended to the last element of the table sections ({{HTMLElement("thead")}}, {{HTMLElement("tbody")}}, {{HTMLElement("tfoot")}}. Values higher than 65534 are clipped down to 65534.
{{htmlattrdef("scope")}}
This enumerated attribute defines the cells that the header defined in the {{HTMLElement("th")}} element relates to. It may have the following values:
  • row, where the header relates to all cells in the row that this element belongs to;
  • col, where the header relates to all cells in the column that this element belongs to;
  • rowgroup, where the header relates to all remaining cells in the row group that this element belongs to. The remaining cells are either those to the right of this element, or to its left depending of the value of the {{htmlattrxref("dir", "table")}} attribute defined on the {{HTMLElement("table")}} element;
  • colgroup, where the header relates to all remaining cells in the column group that this element belongs to;
  • auto
{{htmlattrdef("valign")}} {{Deprecated_inline}} in {{HTMLVersionInline("4")}}, {{obsolete_inline}} in {{HTMLVersionInline("5")}}
This attribute specifies the vertical alignment of the text within each row of cells of the table header. Possible values for this attribute are:
  • 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;
  • and top, which will put the text as close to the top of the cell as it is possible.
Note: Do not use this attribute as it is obsolete (and not supported) in the latest standard: instead set the CSS {{cssxref("vertical-align")}} property on it.
{{htmlattrdef("width")}} {{Deprecated_inline}} in {{HTMLVersionInline(4.01)}}
This attribute is used to define a recommended cell width.  Properties cellspacing and cellpadding may add additional space, and element {{HTMLElement("col")}} width may also have some effect. In general, if a column's width is too narrow to show a particular cell properly, it, and thus the cells in it, may be widened when displayed.
Note: Do not use this attribute in the latest standard: instead set the CSS {{cssxref("width")}} property.

DOM interface

This element implements the {{domxref("HTMLTableHeaderCellElement")}} interface.

Examples

See {{HTMLElement("table")}} for examples on <th>.

Browser compatibility

{{CompatibilityTable}}
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 1.0 {{CompatGeckoDesktop("1.0")}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
align/valign attribute 1.0 {{CompatNo}} [1] {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
char/charoff attribute 1.0 {{CompatNo}} [2] {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
bgcolor attribute {{Non-standard_inline}} {{CompatNo}} {{CompatNo}} {{CompatVersionUnknown}} {{CompatNo}} {{CompatNo}}
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support {{CompatVersionUnknown}} {{CompatGeckoMobile("1.0")}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
align/valign attribute {{CompatUnknown}} {{CompatNo}} [1] {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
char/charoff attribute {{CompatUnknown}} {{CompatNo}} [2] {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
bgcolor attribute {{Non-standard_inline}} {{CompatNo}} {{CompatNo}} {{CompatVersionUnknown}} {{CompatNo}} {{CompatNo}}

[1] See {{bug(915)}}.

[2] See {{bug(2212)}}.

See also

  • Other table-related HTML Elements: {{HTMLElement("caption")}}, {{HTMLElement("col")}}, {{HTMLElement("colgroup")}}, {{HTMLElement("table")}}, {{HTMLElement("tbody")}}, {{HTMLElement("td")}}, {{HTMLElement("tfoot")}}, {{HTMLElement("thead")}}, {{HTMLElement("tr")}}.

{{HTMLRef}}

Revision Source

<p><span class="seoSummary">The HTML element <em>table header cell</em> <code>&lt;th&gt;</code> defines a cell as header of a group of table cells. This&nbsp;group&nbsp;is defined by the {{htmlattrxref("scope", "th")}} and {{htmlattrxref("headers", "th")}} attributes.</span></p>

<h2 id="Usage_context">Usage context</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <td><a href="/en-US/docs/HTML/Content_categories" title="HTML/Content categories">Content categories</a></td>
   <td>None.</td>
  </tr>
  <tr>
   <td>Permitted content</td>
   <td>
    <div class="content-models">
    <div id="table-mdls">Phrasing content.</div>
    </div>
   </td>
  </tr>
  <tr>
   <td>Tag omission</td>
   <td>The <span title="syntax-start-tag">start tag</span> is mandatory.<br />
    The end tag may be omitted, if it is immediately followed by a {{HTMLElement("th")}} or {{HTMLElement("td")}} element or if there are no more data in its parent element.</td>
  </tr>
  <tr>
   <td>Permitted parent elements</td>
   <td>A {{HTMLElement("tr")}} element.</td>
  </tr>
  <tr>
   <td>Normative document</td>
   <td><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/tabular-data.html#the-th-element" rel="external nofollow" title="https://www.whatwg.org/specs/web-apps/current-work/multipage/tabular-data.html#the-th-element">HTML5, section 4.9.10</a> (<a href="https://www.w3.org/TR/REC-html40/struct/tables.html#h-11.2.6" title="https://www.w3.org/TR/REC-html40/struct/tables.html#h-11.2.6">HTML4.01, section 11.2.6</a>)</td>
  </tr>
 </tbody>
</table>

<h2 id="Attributes">Attributes</h2>

<p>This element includes the <a href="https://developer.mozilla.org/en-US/docs/HTML/Global_attributes" title="HTML/Global attributes">global attributes</a>.</p>

<dl>
 <dt>{{htmlattrdef("abbr")}} {{obsolete_inline}} in {{HTMLVersionInline("5")}}</dt>
 <dd>This attribute contains a short abbreviated description of the cell's content. A user-agent (e.g.,&nbsp;a speech reader) &nbsp;may be present in front of&nbsp;the description.
 <div class="note"><strong>Note: </strong>Do not use this attribute as it has become&nbsp;obsolete in the latest standard. Alternatively, you can put the abbreviated description inside the cell and place the long content in the&nbsp;<strong>title</strong> attribute.</div>
 </dd>
 <dt>{{htmlattrdef("align")}} {{Deprecated_inline}} in {{HTMLVersionInline("4")}}, {{obsolete_inline}} in {{HTMLVersionInline("5")}}</dt>
 <dd>This enumerated attribute specifies how the cell&nbsp;content's horizontal alignment will be handled. Possible values are:
 <ul>
  <li><code>left</code>, the content is aligned to the left of the cell</li>
  <li><code>center</code>, the content is centered&nbsp;in the cell</li>
  <li><code>right</code>, &nbsp;the content is aligned to the right of the cell&nbsp;</li>
  <li><code>justify</code>, (with text only) the content&nbsp;is stretched out inside the cell&nbsp;so that it covers its entire width</li>
  <li><code>char</code>, (with text only) the content is aligned&nbsp;to a character inside the &lt;th&gt; element with minimal offset and defined by&nbsp;{{htmlattrxref("char", "th")}} and {{htmlattrxref("charoff" attributes<font face="Consolas, Liberation Mono, Courier, monospace">&nbsp;</font>{{unimplemented_inline("2212")}}.</li>
 </ul>

 <p>The <code>left</code> value is default when this attribute is not specified.</p>

 <div class="note"><strong>Note: </strong>Do not use this attribute as it is no longer supported in the latest standard.

 <ul>
  <li>To achieve the same effect as the <code>left</code>, <code>center</code>, <code>right</code> or <code>justify</code> values, apply&nbsp;the CSS {{cssxref("text-align")}} property to the attribute.</li>
  <li>To achieve the same effect as the <code>char</code> value, give the {{cssxref("text-align")}} property the same value you would use for&nbsp;the&nbsp;{{htmlattrxref("char", "th")}}.&nbsp;&nbsp;{{unimplemented_inline}} in CSS3,.</li>
 </ul>
 </div>
 </dd>
 <dt>{{htmlattrdef("axis")}} {{obsolete_inline}} in {{HTMLVersionInline("5")}}</dt>
 <dd>This attribute contains a list of space-separated strings. Each string is the id of a group of cells that this header applies&nbsp;to.
 <div class="note"><strong>Note: </strong>Do not use this attribute as it is obsolete in the latest standard: use the {{htmlattrxref("scope", "th")}} attribute instead.</div>
 </dd>
 <dt>{{htmlattrdef("bgcolor")}} {{Non-standard_inline}}</dt>
 <dd>This attribute defines the background color of each cell in a&nbsp;column. It consists of a 6-digit hexadecimal code as defined in <a href="https://www.w3.org/Graphics/Color/sRGB" title="https://www.w3.org/Graphics/Color/sRGB">sRGB</a>&nbsp;and is&nbsp;prefixed by&nbsp;'#'. This attribute may be used with one of&nbsp;sixteen predefined color strings:
 <table>
  <tbody>
   <tr>
    <td style="background-color: black; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>black</code> = "#000000"</td>
    <td style="background-color: green; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>green</code> = "#008000"</td>
   </tr>
   <tr>
    <td style="background-color: silver; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>silver</code> = "#C0C0C0"</td>
    <td style="background-color: lime; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>lime</code> = "#00FF00"</td>
   </tr>
   <tr>
    <td style="background-color: gray; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>gray</code> = "#808080"</td>
    <td style="background-color: olive; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>olive</code> = "#808000"</td>
   </tr>
   <tr>
    <td style="background-color: white; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>white</code> = "#FFFFFF"</td>
    <td style="background-color: yellow; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>yellow</code> = "#FFFF00"</td>
   </tr>
   <tr>
    <td style="background-color: maroon; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>maroon</code> = "#800000"</td>
    <td style="background-color: navy; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>navy</code> = "#000080"</td>
   </tr>
   <tr>
    <td style="background-color: red; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>red</code> = "#FF0000"</td>
    <td style="background-color: blue; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>blue</code> = "#0000FF"</td>
   </tr>
   <tr>
    <td style="background-color: purple; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>purple</code> = "#800080"</td>
    <td style="background-color: teal; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>teal</code> = "#008080"</td>
   </tr>
   <tr>
    <td style="background-color: fuchsia; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>fuchsia</code> = "#FF00FF"</td>
    <td style="background-color: aqua; width: 24px; height: 24px; border-width: 1px; border-color: black; border-style: solid;">&nbsp;</td>
    <td><code>aqua</code> = "#00FFFF"</td>
   </tr>
  </tbody>
 </table>

 <div class="note"><strong>Usage note:</strong> Do not use this attribute, as it is non-standard and only implemented in some versions of Microsoft Internet Explorer: the {{HTMLElement("th")}} element should be styled using <a href="/en-US/docs/CSS" title="CSS">CSS</a>. To create a similar effec&nbsp;use {{cssxref("background-color")}} property in&nbsp;<a href="/en-US/docs/CSS" title="CSS">CSS</a>.</div>
 </dd>
</dl>

<dl>
 <dt>{{htmlattrdef("char")}} {{Deprecated_inline}} in {{HTMLVer</dt>
 <dt>..sionInline("4")}}, {{obsolete_inline}} in {{HTMLVersionInline("5")}}</dt>
 <dd>This attribute is used to set the character to align the cells in a column on. Typical values for this include a period (.) when attempting to align numbers or monetary values. If {{htmlattrxref("align", "th")}} is not set to <code>char</code>, this attribute is ignored.
 <div class="note"><strong>Note: </strong>Do not use this attribute as it is no longer&nbsp;supported) in the latest standard. To achieve the same effect as the {{htmlattrxref("char", "thead")}}, in CSS3, you can use the character set using the {{htmlattrxref("char", "th")}} attribute as the value of the {{cssxref("text-align")}} property {{unimplemented_inline}}.</div>
 </dd>
</dl>

<dl>
 <dt>{{htmlattrdef("charoff")}} {{Deprecated_inline}} in {{HTMLVersionInline("4")}}, {{obsolete_inline}} in {{HTMLVersionInline("5")}}</dt>
 <dd>This attribute is used to indicate the number of characters to offset the column data from the alignment characters specified by the <strong>char</strong> attribute.
 <div class="note"><strong>Note: </strong>Do not use this attribute as it is no longer supported) in the latest standard.</div>
 </dd>
</dl>

<dl>
 <dt>{{htmlattrdef("colspan")}}</dt>
 <dd>This attribute contains a positive integer value that indicates over&nbsp;how many columns a cell extends. Its default value is <code>1. I</code>f its value is set to <code>0</code>, the cell is extended to the last element of the {{HTMLElement("colgroup")}}. Values higher than 1000 are clipped down to 1000.</dd>
 <dt>{{htmlattrdef("headers")}}</dt>
 <dd>This attribute contains&nbsp;a list of space-separated strings, each corresponding to the <strong>id</strong> attributes of other {{HTMLElement("th")}} elements that relate to this element.</dd>
 <dt>{{htmlattrdef("rowspan")}}</dt>
 <dd>This attribute contains a positive&nbsp;integer value that indicates over&nbsp;how many rows a cells extends. Its default value is <code>1. I</code>f its value is set to <code>0</code>, the cell is extended to the last element of the&nbsp;table sections ({{HTMLElement("thead")}}, {{HTMLElement("tbody")}}, {{HTMLElement("tfoot")}}. Values higher than 65534 are clipped down to 65534.</dd>
 <dt>{{htmlattrdef("scope")}}</dt>
 <dd>This enumerated attribute defines the cells that the header defined in the {{HTMLElement("th")}} element relates to. It may have the following values:
 <ul>
  <li><code>row</code>, where the header relates to all cells in the row that this element belongs to;</li>
  <li><code>col</code>, where the header relates to all cells in the column that this element belongs to;</li>
  <li><code>rowgroup</code>, where the header relates to all remaining cells in the row group that this element belongs to. The remaining cells are either those to the right of this element, or to its left depending of the value of the {{htmlattrxref("dir", "table")}} attribute defined on the {{HTMLElement("table")}} element;</li>
  <li><code>colgroup</code>, where the header relates to all remaining cells in the column group that this element belongs to;</li>
  <li><code>auto</code></li>
 </ul>
 </dd>
 <dt>{{htmlattrdef("valign")}} {{Deprecated_inline}} in {{HTMLVersionInline("4")}}, {{obsolete_inline}} in {{HTMLVersionInline("5")}}</dt>
 <dd>This attribute specifies the vertical alignment of the text within each row of cells of the table header. Possible values for this attribute are:
 <ul>
  <li><code>baseline</code>, which will put the text as close to the bottom of the cell as it is possible, but align it on the <a href="https://en.wikipedia.org/wiki/Baseline_%28typography%29" title="https://en.wikipedia.org/wiki/Baseline_(typography)">baseline</a> of the characters instead of the bottom of them. If characters are all of the size, this has the same effect as <code>bottom</code>.</li>
  <li><code>bottom</code>, which will put the text as close to the bottom of the cell as it is possible;</li>
  <li><code>middle</code>, which will center the text in the cell;</li>
  <li>and <code>top</code>, which will put the text as close to the top of the cell as it is possible.</li>
 </ul>

 <div class="note"><strong>Note: </strong>Do not use this attribute as it is obsolete (and not supported) in the latest standard: instead set the CSS&nbsp;{{cssxref("vertical-align")}} property on it.</div>
 </dd>
 <dt>{{htmlattrdef("width")}} {{Deprecated_inline}} in {{HTMLVersionInline(4.01)}}</dt>
 <dd>This attribute is used to define a recommended cell width. &nbsp;Properties&nbsp;<a href="/en-US/docs/Web/API/HTMLTableElement/cellSpacing">cellspacing</a> and <a href="/en-US/docs/Web/API/HTMLTableElement/cellPadding">cellpadding</a> may add additional space, and element&nbsp;{{HTMLElement("col")}}&nbsp;width may also have some effect. In general, if a column's width is too narrow to show a particular cell properly, it, and thus the cells in it, may be widened when displayed.
 <div class="note"><strong>Note: </strong>Do not use this attribute in the latest standard: instead set the CSS {{cssxref("width")}} property.</div>
 </dd>
</dl>

<h2 id="DOM_interface">DOM interface</h2>

<p>This element implements the {{domxref("HTMLTableHeaderCellElement")}} interface.</p>

<h2 id="Examples">Examples</h2>

<p>See {{HTMLElement("table")}} for examples on <code>&lt;th&gt;</code>.</p>

<h2 id="Browser_compatibility">Browser compatibility</h2>

<div>{{CompatibilityTable}}</div>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>1.0</td>
   <td>{{CompatGeckoDesktop("1.0")}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td><code>align/valign</code> attribute</td>
   <td>1.0</td>
   <td>{{CompatNo}} [1]</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td><code>char/charoff</code> attribute</td>
   <td>1.0</td>
   <td>{{CompatNo}} [2]</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td><code>bgcolor</code> attribute {{Non-standard_inline}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Mobile</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatGeckoMobile("1.0")}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
  <tr>
   <td><code>align/valign</code> attribute</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatNo}} [1]</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td><code>char/charoff</code> attribute</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatNo}} [2]</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
  <tr>
   <td><code>bgcolor</code> attribute {{Non-standard_inline}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
  </tr>
 </tbody>
</table>
</div>

<p>[1] See {{bug(915)}}.</p>

<p>[2] See {{bug(2212)}}.</p>

<h2 id="See_also">See also</h2>

<ul>
 <li>Other table-related HTML Elements: {{HTMLElement("caption")}}, {{HTMLElement("col")}}, {{HTMLElement("colgroup")}}, {{HTMLElement("table")}}, {{HTMLElement("tbody")}}, {{HTMLElement("td")}}, {{HTMLElement("tfoot")}}, {{HTMLElement("thead")}}, {{HTMLElement("tr")}}.</li>
</ul>

<p>{{HTMLRef}}</p>
Revert to this revision