La propiedad de alineación HTML DOM THead se usa para establecer o devolver la alineación horizontal del contenido dentro del elemento <thead> . No es compatible con HTML 5.
Sintaxis:
- Devuelve la propiedad de alineación .
theadobject.align
- Establece la propiedad de alineación .
theadObject.align = "left | right | center | justify | char"
Valores de propiedad:
- izquierda: Establece el texto para alinear a la izquierda.
- right: Establece el texto para alinear a la derecha.
- center : Establece el texto para que se alinee al centro.
- 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.
Valor devuelto: Devuelve un valor de string que representa la alineación del elemento <thead>.
Ejemplo 1: El siguiente código HTML ilustra cómo devolver la propiedad de alineación de THead .
HTML
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid green; } </style> </head> <body> <center> <h1> GeeksforGeeks </h1> <h2>HTML DOM THead align property</h2> <table> <thead id="theadID" align="left"> <tr> <td>Username</td> <td>User_Id</td> </tr> </thead> <tbody> <tr> <td>Shashank</td> <td>@shashankla</td> </tr> <tr> <td>GeeksforGeeks</td> <td>@geeks</td> </tr> </tbody> </table> <button onclick="btnclick()"> Click here </button> <p id="paraID"></p> <script> function btnclick() { var thead = document.getElementById("theadID").align; document.getElementById("paraID").innerHTML = thead; } </script> </body> </html>
Producción:
Ejemplo 2: El siguiente código ilustra cómo establecer la propiedad THead para alinear .
HTML
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid green; } </style> </head> <body> <center> <h1> GeeksforGeeks </h1> <h2>HTML DOM THead align property </h2> <table> <thead id="theadID" align="left"> <tr> <td>Username</td> <td>User_Id</td> </tr> </thead> <tbody> <tr> <td>Shashank</td> <td>@shashankla</td> </tr> <tr> <td>GeeksforGeeks</td> <td>@geeks</td> </tr> </tbody> </table> <button onclick="btnclick()"> Click here </button> <p id="paraID"></p> <script> function btnclick() { var thead = document.getElementById( "theadID").align = "right"; document.getElementById( "paraID").innerHTML = thead; } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Mini Opera
- Firefox
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA