El atributo HTML <col> align se utiliza para establecer la alineación horizontal del contenido de texto dentro del elemento col . No es compatible con HTML 5.
Sintaxis:
<col 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.
- 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 col align Attribute </title> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML col align Attribute </h2> <table width="500" border="1"> <col align="center"> <tr> <th>Name</th> <th>Expenses</th> </tr> <tr> <td>BITTU</td> <td>2500.00</td> </tr> <tr> <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 <col> se enumeran a continuación:
- Google Chrome: no compatible
- Internet Explorer: no compatible
- Firefox: no compatible
- Safari: no compatible
- Ópera: no compatible