HTML | Propiedad de altura de incrustación de DOM

La propiedad de altura incrustada en HTML DOM se usa para establecer o devolver el valor del atributo de altura. El atributo de altura define la altura del contenido incrustado en términos de píxeles. 

Sintaxis:

  • Devuelve la propiedad de la altura:
embedObject.height
  • Establezca la propiedad de altura:
embedObject.height = pixels

Valores de propiedad:

  • px: especifique la altura en píxeles del contenido incrustado.

Valor de retorno: Devuelve un número para mostrar la altura del contenido incrustado. 

Ejemplo: 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Embed height Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
 
        <embed id="embedID" height="400"
            src="https://ide.geeksforgeeks.org">
        <br>
         
        <button onclick="GFGfun()">
            Try it
        </button>
 
        <p id="pid"></p>
 
        <script>
            function GFGfun() {
                var idheight =
                document.getElementById("embedID").height;
                 
                document.getElementById("pid").innerHTML
                        = idheight;
            }
        </script>
    </center>
</body>
 
</html>

Salida: antes de hacer clic en el botón:

  

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

  

Ejemplo: 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Embed height Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
 
        <embed id="embedID"
            src="https://ide.geeksforgeeks.org">
        <br>
 
        <button onclick="GFGfun()">
            Try it
        </button>
 
        <p id="pid"></p>
 
        <script>
            function GFGfun() {
                var idheight =
                document.getElementById("embedID").height
                        = 400;
                 
                document.getElementById("pid").innerHTML
                        = idheight;
            }
        </script>
    </center>
</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 la propiedad de altura de incrustación DOM se enumeran a continuación:

  • Google Chrome 1 y superior
  • Borde 12 y superior
  • Internet Explorer 6 y superior
  • Firefox 1 y superior
  • Safari 4 y superior
  • Ópera 12.1 y superior

Publicación traducida automáticamente

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