HTML | <título> alinear atributo

El atributo HTML <caption> align se utiliza para especificar la alineación del elemento <caption> . Se utiliza para alinear el título a la izquierda, derecha, arriba y abajo de una tabla.
Este atributo no es compatible con HTML5.

Nota: De forma predeterminada, el título de la tabla está alineado al centro.

Sintaxis:

<caption align="left | right | top | bottom> 

Valores de atributos

  • izquierda: Establece el título alineado a la izquierda de la tabla.
  • right: Establece el título alineado a la derecha de la Tabla
  • Superior: Establece el título de alineación superior de la tabla. Es un valor predeterminado.
  • Inferior: Establece el título de alineación inferior de la tabla.

Ejemplo:

<!-- HTML code to show the working of caption tag -->
<!DOCTYPE html>
<html>
  
<head>
    <style>
        table,
        th,
        td {
            border: 1px solid black;
        }
          
        #GFG {
            font-size: 25px;
            color: green;
        }
    </style>
</head>
  
<body>
    <h1 style="color:green;font-size:35px;"> 
    GeeksForGeeks 
    </h1>
    <h2>HTML Caption align  Attribute</h2>
  
    <table>
        <!-- Adding caption to the table -->
        <caption id="GFG"
                 align="top">
          Students
      </caption>
        <tr>
            <th>Firstname</th>
            <th>Lastname</th>
            <th>Age</th>
        </tr>
        <tr>
            <td>Priya</td>
            <td>Sharma</td>
            <td>24</td>
        </tr>
        <tr>
            <td>Arun</td>
            <td>Singh</td>
            <td>32</td>
        </tr>
        <tr>
            <td>Sam</td>
            <td>Watson</td>
            <td>41</td>
        </tr>
    </table>
<br>
<br>
    <table>
        <!-- Adding caption to the table -->
        <caption id="GFG"
                 align="bottom">
          Students
      </caption>
        <tr>
            <th>Firstname</th>
            <th>Lastname</th>
            <th>Age</th>
        </tr>
        <tr>
            <td>Priya</td>
            <td>Sharma</td>
            <td>24</td>
        </tr>
        <tr>
            <td>Arun</td>
            <td>Singh</td>
            <td>32</td>
        </tr>
        <tr>
            <td>Sam</td>
            <td>Watson</td>
            <td>41</td>
        </tr>
    </table>
</body>
  
</html>

Producción :

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

  • Google Chrome
  • explorador de Internet
  • Firefox
  • safari de manzana
  • Ópera

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 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 *