HTML | Propiedad de alineación de subtítulos DOM

La propiedad de alineación de subtítulos HTML DOM se utiliza para establecer o devolver el valor del atributo de alineación del elemento <caption> .

Nota: esta propiedad no es compatible con HTML5.

Sintaxis: 

Devuelve la propiedad de alineación de título.

captionobject.align;

Establece la propiedad de alineación de subtítulos.

captionobject.align="left | right | center| Top | Bottom"

Valores de propiedad: 

  • izquierda: establece la alineación a la izquierda del elemento de título.
  • centro: Establece la alineación central del elemento de título. Es el valor predeterminado.
  • right: Establece la alineación a la derecha del elemento de título. 
  • Superior: Establece el título de alineación superior de la tabla. 
  • Inferior: Establece el título de alineación inferior de la tabla.

Valor devuelto: Devuelve un valor de string que representa la alineación del elemento de título. 

Ejemplo 1: este ejemplo devuelve la propiedad de alineación de título. 

html

<!DOCTYPE html>
<html>
 
<head>
    <style>
        table,
        th,
        td {
            border: 1px solid black;
        }
    </style>
</head>
 
<body>
    <h1 style="color:green;font-size:35px;">
        GeeksForGeeks
    </h1>
    <h2>DOM Caption align Property</h2>
 
    <table>
        <caption id="GFG" align="left">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>
    <button onclick="myGeeks()">Submit</button>
    <p id="sudo"></p>
 
 
    <script>
        function myGeeks() {
            var w = document.getElementById("GFG").align;
            document.getElementById("sudo").innerHTML = w;
        }
    </script>
</body>
 
</html>

Producción:

  • Antes de hacer clic en el botón: 

  • Después de hacer clic en el botón:

 

Ejemplo 2: este ejemplo devuelve la propiedad de alineación de título. 

html

<!DOCTYPE html>
<html>
 
<head>
    <style>
        table,
        th,
        td {
            border: 1px solid black;
        }
    </style>
</head>
 
<body>
    <h1 style="color:green;font-size:35px;">
        GeeksForGeeks
    </h1>
    <h2>DOM Caption align Property</h2>
 
    <table>
        <caption id="GFG" align="left">
            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>
    <button onclick="myGeeks()">Submit</button>
    <p id="sudo"></p>
 
 
 
    <script>
        function myGeeks() {
            var w = document.getElementById(
                    "GFG").align = "right";
 
            document.getElementById(
                    "sudo").innerHTML = w;
        }
    </script>
</body>
 
</html>

Producción:

  • Antes de hacer clic en el botón:

 

  • Después de hacer clic en el botón:

 

Navegadores compatibles: los navegadores compatibles con HTML DOM caption align Property 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 *