El atributo HTML <tbody> valign se utiliza para especificar la alineación vertical del contenido de las celdas de la tabla .
Sintaxis:
<tbody valign="top | middle | bottom | baseline">
Valor de atributo:
- top: Establece el contenido para que se alinee en la parte superior.
- medio: Establece el contenido en alineación media.
- bottom: establece que el contenido se alinee con la parte inferior.
- línea de base: Establece el contenido a la línea de base. La línea de base es la línea donde se sientan la mayoría de los personajes. Es un valor predeterminado.
Nota: HTML 5 no admite el atributo <tbody> valign.
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML tbody valign Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML tbody valign Attribute</h2> <table border="1" width="500"> <thead> <tr> <th>NAME</th> <th>AGE</th> <th>BRANCH</th> </tr> </thead> <tbody valign="middle"> <tr style="height:50px;"> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> <tr style="height:50px;"> <td>RAKESH</td> <td>25</td> <td>EC</td> </tr> </tbody> </table> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con HTML <tbody> valign Attribute se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera