HTML | Atributo de ancho de margen <iframe>

El atributo de ancho de margen HTML <iframe> se utiliza para especificar el margen izquierdo y derecho del contenido en un elemento Iframe .

Sintaxis:

<iframe marginwidth="pixels">

Valores de atributos:

  • píxeles: contiene el valor, es decir, un píxel que especifica el margen derecho e izquierdo del contenido en un elemento Iframe.

Nota: este atributo no es compatible con HTML 5; como reemplazo, puede usar CSS.
El siguiente ejemplo ilustra el atributo <iframe> marginwidth:
Ejemplo:

<!DOCTYPE html>
<html>
<head>
    <title>
     HTML <iframe> marginwidth Attribute
    </title>
</head>
<body>
    <center>
        <h1 style="color:green;">
          GeeksforGeeks
        </h1>
        <h2>
        HTML Iframe marginwidth Attribute
    </h2>
  
        <p>Content goes here</p>
  
        <iframe src=
"https://ide.geeksforgeeks.org/tryit.php" 
                height="200"
                width="400"
                marginwidth="50">
        </iframe>
  </center>
  
</body>
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con el atributo HTML <iframe> marginwidth se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Ópera
  • Safari

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 *