HTML | <col> alinear atributo

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

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *