HTML | <tbody> alinear atributo

El atributo HTML <tbody> align se utiliza para establecer la alineación horizontal del contenido de texto dentro del cuerpo de la tabla (tbody) .

Sintaxis:

<tbody align="left | right | center | justify | char">

Valor de atributo:

  • 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. De forma predeterminada, se establece en el centro.
  • 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: HTML 5 no admite el atributo de alineación <tbody>.

Ejemplo:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML tbody align Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML tbody align Attribute</h2>
  
    <table border="1" 
           width="500">
        <thead>
            <tr>
                <th>NAME</th>
                <th>AGE</th>
                <th>BRANCH</th>
            </tr>
        </thead>
  
        <tbody align="center">
            <tr>
                <td>BITTU</td>
                <td>22</td>
                <td>CSE</td>
            </tr>
        </tbody>
    </table>
</body>
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con HTML <tbody> align Attribute se enumeran a continuación:

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

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 *