El atributo HTML <tr> align se utiliza para establecer la alineación horizontal del contenido del texto dentro de la fila de la tabla . No es compatible con HTML 5.
Sintaxis:
<tr 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. Es un valor predeterminado.
- 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.
Ejemplo:
<!DOCTYPE html> <html> <head> <title>HTML tr align Attribute</title> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML tr align Attribute</h2> <table width="500" border="1"> <tr align="right"> <th>Name</th> <th>Expenses</th> </tr> <tr align="center"> <td>BITTU</td> <td>2500.00</td> </tr> <tr align="left"> <td>RAKESH</td> <td>1400.00</td> </tr> </table> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de alineación HTML <tr> se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera