El atributo de alineación HTML <colgroup> se utiliza para establecer la alineación horizontal del texto o contenido en el grupo de columnas.
Sintaxis:
<colgroup align="left|right|center|justify|char>
Valores de atributos:
- izquierda: Establece el contenido alineado a la izquierda.
- right: Establece el contenido alineado a la derecha.
- center: Pone el contenido al centro.
- Justificar: Estira las líneas y divide el contenido por igual.
- char: Establece el contenido a un carácter específico.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML ColumnGroup align Attribute </title> <style> #myColGroup { background: green; } table { color: white; margin-left: 180px; background: yellow; } #Geek_p { color: green; font-size: 30px; } td { padding: 10px; } h1, h2 { text-align:center; } </style> </head> <body> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> HTML ColumnGroup align Attribute </h2> <table> <colgroup id="myColGroup" span="3" align = "left"> </colgroup> <tr> <th>S.No</th> <th>Title</th> <th>Geek_id</th> </tr> <tr> <td>Geek_1</td> <td>GeekForGeeks</td> <th>Geek_id_1</th> </tr> <tr> <td>Geek_2</td> <td>GeeksForGeeks</td> <th>Geek_id_2</th> </tr> </table> </body> </html>
Producción:
Navegadores compatibles: el atributo de alineación <colgroup> no es compatible con ningún navegador. Ahora usa CSS en su lugar.
Publicación traducida automáticamente
Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA