HTML | <th> alinear atributo

El atributo HTML <th> align se utiliza para establecer la alineación horizontal del contenido del texto dentro de la celda del encabezado de la tabla.

Sintaxis:

<th 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.

Nota la

El atributo de alineación no es compatible con HTML 5.

Ejemplo:

<!DOCTYPE html>
<html>
  
<head>
    <title>
      HTML th align Attribute
  </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML th align Attribute</h2>
  
    <table width="300" border="1">
        <tr>
            <th align="left">NAME</th>
            <th align="center">AGE</th>
            <th align="right">BRANCH</th>
        </tr>
  
        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>
  
        <tr>
            <td>RAKESH</td>
            <td>25</td>
            <td>EC</td>
        </tr>
    </table>
</body>
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con el atributo de alineación HTML <th> se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Safari
  • Ópera

¡Comience su viaje de codificación ahora!


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 *