El atributo HTML <th> align se utiliza para establecer la alineación horizontal del contenido del texto dentro de la celda del encabezado de la tabla.
Sintaxis:
<th align= "left | right | center | justify | char">
Valores de atributos:
- izquierda: Establece el texto alineado a la izquierda.
- right: Establece el texto alineado a la derecha.
- center: Establece la alineación del centro del texto.
- justificar: Alarga el texto del párrafo para igualar el ancho de todas las líneas.
- char: Establece el text-align a un carácter específico.
Nota la
El atributo de alineación no es compatible con HTML 5.
Ejemplo:
<!DOCTYPE html> < html > < head > < title > HTML th align Attribute </ title > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >HTML th align Attribute</ h2 > < table width = "300" border = "1" > < tr > < th align = "left" >NAME</ th > < th align = "center" >AGE</ th > < th align = "right" >BRANCH</ th > </ tr > < tr > < td >BITTU</ td > < td >22</ td > < td >CSE</ td > </ tr > < tr > < td >RAKESH</ td > < td >25</ td > < td >EC</ td > </ tr > </ table > </ body > </ html > |
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de alineación HTML <th> se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
¿Escribir código en un comentario? Utilice ide.geeksforgeeks.org , genere un enlace y compártalo aquí.