El atributo de alineación HTML <thead> se utiliza para establecer la alineación horizontal del contenido de texto dentro de la sección de encabezado (thead) de la tabla.
Sintaxis:
<thead align="left|right|center|justify|char">
Nota: Este atributo ha quedado DEPRECADO y ya no se recomienda.
Valor de atributo:
- 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: estira el texto para establecer el ancho de todas las líneas iguales en el encabezado de la tabla.
- char: Establece el text-align a un carácter específico.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML thead align Attribute </title> <style> h1 { color: green; } thead { color: blue; } table, tbody, td { border: 1px solid black; border-collapse: collapse; } </style> </head> <body> <center> <h1>GeeksforGeeks</h1> <h2>HTML thead align Attribute</h2> <table> <!-- thead tag starts from here --> <thead align="char" valign="bottom" char="M"> <tr> <th>Name</th> <th>User Id</th> </tr> </thead> <!-- thead tag ends here --> <tbody> <tr> <td>Ram</td> <td>@ram_b</td> </tr> <tr> <td>Shashank</td> <td>@shashankla</td> </tr> </tbody> </table> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de alineación HTML <thead> se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA