--- title:
El elemento HTML <th>
define una celda como encabezado de un grupo de celdas en una tabla. La naturaleza exacta de este grupo está definida por los atributos {{htmlattrxref("scope", "th")}} y {{htmlattrxref("headers", "th")}}.
Categorías de contenido | Ninguno |
---|---|
Contenido permitido |
Contenido de flujo, pero sin encabezado, pie de página, contenido de seccionamiento, o contenido descendiente de encabezados
|
Omisión de etiqueta | La etiqueta de inicio es obligatoria. La etiqueta de cierre puede ser omitida si es inmediatamente seguida por el elemento {{HTMLElement("th")}} o {{HTMLElement("td")}} o si no hay más datos en su elemento padre. |
Parents permítidos | Un elemento {{HTMLElement("tr")}} |
Roles permítdos de ARIA | Cualquiera |
Interfaz DOM | {{domxref("HTMLTableHeaderCellElement")}} |
Este elemento incluye los atributos globales.
left
: El contenido se alinea a la izquierda de la celda.center
: El contenido se centra en la celda.right
: El contenido se alinea a la derecha de la celda.justify
(solo con texto): El contenido se alarga para ocupar todo el ancho de la celda.char
(solo con texto): El contenido es alineado a un caracter dentro de <th>
con el offset mínimo. Este caracter esta definido por los atributos {{htmlattrxref("char", "th")}} y {{htmlattrxref("charoff", "th")}}.El valor por defecto cuando no se especifica este atributo es left
.
Nota: No usar este atributo, ya que está obsoleto en el último estándar.
left
, center
, right
o justify
, aplicar la propiedad CSS {{cssxref("text-align")}} al elemento.char
, dar a la propiedad {{cssxref("text-align")}} el mismo valor que usarías para {{htmlattrxref("char", "th")}}. {{unimplemented_inline}} in CSS3.id
de un grupo de celdas a las que se les aplica esta cabecera.
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" |
<th>
. Los valores típicos incluyen un punto (.) para alinear números o valores monetarios. Si no se establece {{htmlattrxref("align", "th")}} como char, el atributo es ignorado.
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.id
attributes of other {{HTMLElement("th")}} elements that relate to this element.1.
If its value is set to 0
, the cell is extended to the last element of the table sections ({{HTMLElement("thead")}}, {{HTMLElement("tbody")}} or {{HTMLElement("tfoot")}}). Values higher than 65534 are clipped down to 65534.row
: The header relates to all cells of the row it belongs to.col
: The header relates to all cells of the column it belongs to.rowgroup
: The header belongs to a rowgroup and relates to all of its cells. These cells can be placed to the right or the left of the header, depending on the value of the dir
attribute in the {{HTMLElement("table")}} element.colgroup
: The header belongs to a colgroup and relates to all of its cells.auto
baseline
: Positions the text near the bottom of the cell and aligns it with the baseline of the characters instead of the bottom. If characters don't descend below the baseline, the baseline value achieves the same effect as bottom
.bottom
: Positions the text near the bottom of the cell.middle
: Centers the text in the cell.top
: Positions the text near the top of the cell.See {{HTMLElement("table")}} for examples on <th>
.
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')}} |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1.0 | {{CompatVersionUnknown}} | {{CompatGeckoDesktop("1.0")}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |
align/valign attribute |
1.0 | {{CompatVersionUnknown}} | {{CompatNo}} [1] | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |
char/charoff attribute |
1.0 | {{CompatVersionUnknown}} | {{CompatNo}} [2] | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |
bgcolor attribute {{Non-standard_inline}} |
{{CompatNo}} | {{CompatNo}} | {{CompatNo}} | {{CompatVersionUnknown}} | {{CompatNo}} | {{CompatNo}} |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatGeckoMobile("1.0")}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |
align/valign attribute |
{{CompatUnknown}} | {{CompatVersionUnknown}} | {{CompatNo}} [1] | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} |
char/charoff attribute |
{{CompatUnknown}} | {{CompatVersionUnknown}} | {{CompatNo}} [2] | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} |
bgcolor attribute {{Non-standard_inline}} |
{{CompatNo}} | {{CompatNo}} | {{CompatNo}} | {{CompatVersionUnknown}} | {{CompatNo}} | {{CompatNo}} |
[1] See {{bug(915)}}.
[2] See {{bug(2212)}}.
{{HTMLRef}}