HTML | Propiedad de ancho de incrustación de DOM

La propiedad de ancho de incrustación DOM en HTML se usa para establecer o devolver el valor del atributo de ancho. El atributo de ancho define el ancho del contenido incrustado, en píxeles. 

Sintaxis:

  • Devuelve la propiedad de ancho:
embedObject.width
  • Establezca la propiedad de ancho:
embedObject.width = pixels

Valores de propiedad:

  • px: especifique el ancho en píxeles del contenido incrustado.

Valor de retorno: Devuelve un número para mostrar el ancho del contenido incrustado. 

Ejemplo: 

HTML

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

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

  

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

 widget de imagen 

Ejemplo: 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>HTML DOM Embed width 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 idwidth =
                document.getElementById("embedID").width=400;
 
                document.getElementById("pid").innerHTML
                     = idwidth;
            }
        </script>
    </center>
</body>
 
</html>

Salida: 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 ancho de incrustación de 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 *