--- title: slug: Web/HTML/Element/th tags: - HTML - 레퍼런스 - 요소 - 웹 - 표 translation_of: Web/HTML/Element/th ---
{{HTMLRef}}

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

{{EmbedInteractiveExample("pages/tabbed/th.html","tabbed-taller")}}
Content categories None.
Permitted content Flow content, but with no header, footer, sectioning content, or heading content descendants.
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 parents A {{HTMLElement("tr")}} element.
Permitted ARIA roles Any
DOM interface {{domxref("HTMLTableHeaderCellElement")}}

Attributes

This element includes the global attributes.

{{htmlattrdef("abbr")}}
This attribute contains a short abbreviated description of the cell's content. Some user-agents, such as speech readers, may present this description before the content itself.
{{htmlattrdef("align")}} {{obsolete_inline("html5")}}
This enumerated attribute specifies how the cell content's horizontal alignment will be handled. Possible values are:

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

Note: Do not use this attribute as it is obsolete 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 element.
  • 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("html5")}}
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"
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 effect use the {{cssxref("background-color")}} property in CSS instead.
{{htmlattrdef("char")}} {{obsolete_inline("html5")}}
The content in the cell element is aligned to a character. Typical values include a period (.) 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 obsolete in the latest standard. To achieve the same effect, you can specify the character as the first value of the {{cssxref("text-align")}} property, {{unimplemented_inline}} in CSS3.
{{htmlattrdef("charoff")}} {{obsolete_inline("html5")}}
This attribute is used to shift column data to the right of the character specified by the char attribute. Its value specifies the length of this shift.
Note: Do not use this attribute as it is obsolete in the latest standard.
{{htmlattrdef("colspan")}}
This attribute contains a non-negative integer value that indicates for how many columns the cell extends. Its default value is 1. Values higher than 1000 will be considered as incorrect and will be set to the default value (1).
{{htmlattrdef("headers")}}
This attribute contains a list of space-separated strings, each corresponding to the id attribute of the {{HTMLElement("th")}} elements that apply to this element.
{{htmlattrdef("height")}} {{Deprecated_inline("html 4")}}, {{obsolete_inline("html5")}}
This attribute is used to define a recommended cell height.
Note: Do not use this attribute as it is obsolete in the latest standard: use the CSS {{cssxref("height")}} property instead.
{{htmlattrdef("rowspan")}}
This attribute contains a non-negative integer value that indicates for how many rows the cell extends. Its default value is 1; if its value is set to 0, it extends until the end of the table section ({{HTMLElement("thead")}}, {{HTMLElement("tbody")}}, {{HTMLElement("tfoot")}}, even if implicitly defined), that the cell belongs to. 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:

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

{{htmlattrdef("valign")}} {{obsolete_inline("html5")}}
This attribute specifies how a text is vertically aligned inside a cell. Possible values for this attribute are:
Note: Do not use this attribute as it is obsolete in the latest standard: use the CSS {{cssxref("vertical-align")}} property instead.
{{htmlattrdef("width")}} {{Deprecated_inline("html 4")}}, {{obsolete_inline("html5")}}
This attribute is used to define a recommended cell width. Additional space can be added with the {{domxref("HTMLTableElement.cellSpacing", "cellspacing")}} and {{domxref("HTMLTableElement.cellPadding", "cellpadding")}} properties and the width of the {{HTMLElement("col")}} element can also create extra width. But, if a column's width is too narrow to show a particular cell properly, it will be widened when displayed.
Note: Do not use this attribute as it is obsolete in the latest standard: use the CSS {{cssxref("width")}} property instead.

Examples

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

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG','tables.html#the-th-element','th element')}} {{Spec2('HTML WHATWG')}}  
{{SpecName('HTML5 W3C','tabular-data.html#the-th-element','th element')}} {{Spec2('HTML5 W3C')}}  

Browser compatibility

{{Compat("html.elements.th")}}

See also