La propiedad HTML DOM TBody vAlign se utiliza para establecer o devolver el valor del atributo valign del elemento <tbody> . El atributo valign se usa para especificar la alineación vertical del contenido de texto dentro del elemento del cuerpo de la tabla.
Nota : esta propiedad ya no se admite en HTML5.
Sintaxis:
Devuelve la propiedad TBody vAlign .
TBodyobject.vAlign;
Establece la propiedad TBody vAlign .
TBodyobject.vAlign = "top|middle|bottom|baseline";
Valores de propiedad:
- top : Establece el contenido en la alineación superior.
- medio: Establece el contenido en alineación media.
- bottom: establece el contenido en la alineación inferior.
- línea de base: Establece el contexto a la línea de base. La línea de base es la línea donde se sientan la mayoría de los personajes.
Valor devuelto: Devuelve un valor de string que representa la alineación vertical del elemento <tbody>.
Ejemplo 1: El siguiente código HTML ilustra cómo devolver la propiedad TBody vAlign .
HTML
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid green; } </style> </head> <body> <center> <h1> GeeksforGeeks </h1> <h2>HTML DOM TBody vAlign property </h2> <!-- tbody tag starts --> <table> <tbody id="tbodyID" valign="top"> <tr> <td>Shashank</td> <td>@shashankla</td> </tr> <tr> <td>GeeksforGeeks</td> <td>@geeks</td> </tr> </tbody> <!-- tbody tag ends --> </table> <p> Click button to return the vertical alignment of the TBody element </p> <button onclick = "btnclick()"> Click Here! </button> <p id ="paraID"></p> <script> function btnclick() { var tbody = document.getElementById("tbodyID").vAlign; document.getElementById("paraID").innerHTML = tbody; } </script> </body> </html>
Producción:
Ejemplo 2: El siguiente código ilustra cómo configurar el TBodyPropiedad vAlign .
HTML
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid green; } </style> </head> <body> <center> <h1> GeeksforGeeks </h1> <p><b>HTML DOM TBody vAlign property </b></p> <!-- tbody tag starts--> <table> <tbody id="tbodyID" valign="top"> <tr> <td>Shashank</td> <td>@shashankla</td> </tr> <tr> <td>GeeksforGeeks</td> <td>@geeks</td> </tr> </tbody> <!-- tbody tag ends --> </table> <p> Click on the button to set the vertical alignment of the TBody element </p> <button onclick="btnclick()"> Click Here! </button> <p id="paraID"></p> </center> <script> function btnclick() { var tbody = document.getElementById( "tbodyID").vAlign = "bottom"; document.getElementById("paraID") .innerHTML = "The value of the " + "Attribute was changed to: " + tbody; } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- 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