Propiedad de alineación HTML DOM TFot

La propiedad HTML DOM TFoot align se utiliza para establecer o devolver la alineación horizontal del contenido dentro del elemento <thead> . No es compatible con HTML 5.

Sintaxis:

tfootObject.align = "left | right | center  | justify | char"

Valores de propiedad

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

Valor devuelto: Devuelve un valor de string que representa la alineación horizontal del elemento <tfoot>. 

Ejemplo 1: El siguiente código HTML ilustra cómo devolver la propiedad de alineación de TFoot. 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <style>
        table,
        th,
        td {
            border: 1px solid green;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>
           GeeksforGeeks
        </h1>
         
 
 
<p><b>HTML DOM TFoot align Property </b></p>
 
 
 
        <table>
            <thead>
                <tr>
                    <td>Username</td>
                    <td>User_Id</td>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>Shashank</td>
                    <td>@shashankla</td>
                </tr>
                <tfoot id="GFG" align="left">
                    <tr>
                        <td>GeeksforGeeks</td>
                        <td>@geeks</td>
                    </tr>
                </tfoot>
            </tbody>
        </table>
        <button onclick="btnclick()"> Click here </button>
        <p id="paraID"></p>
 
 
 
        </center>
        <script>
            function btnclick() {
                var x = document.getElementById("GFG").align;
                document.getElementById("paraID").innerHTML = x;
            }
        </script>
</body>
 
</html>

Producción:

Ejemplo 2: El siguiente código HTML ilustra cómo establecer la propiedad de alineación de TFoot. 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <style>
        table,
        th,
        td {
            border: 1px solid green;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>
            GeeksforGeeks
        </h1>
         
 
 
<p><b>HTML DOM TFoot align Property </b></p>
 
 
 
        <table>
            <thead>
                <tr>
                    <td>Username</td>
                    <td>User_Id</td>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>Shashank</td>
                    <td>@shashankla</td>
                </tr>
                <tfoot id="GFG" align="left">
                    <tr>
                        <td>GeeksforGeeks</td>
                        <td>@geeks</td>
                    </tr>
                </tfoot>
            </tbody>
        </table>
        <button onclick="btnclick()"> Click here </button>
        <p id="paraID"></p>
 
 
 
        <script>
            function btnclick() {
                var x = document.getElementById("GFG").align = "right";
                document.getElementById("paraID").innerHTML = x;
            }
        </script>
</body>
 
</html>

Producción:

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 *