El atributo HTML <iframe> marginheight se utiliza para especificar un margen superior e inferior del contenido en un elemento Iframe .
Sintaxis:
<iframe marginheight="pixels">
Valores de atributos:
- píxeles: contiene el valor, es decir, el píxel que especifica el margen superior e inferior 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 marginheight <iframe>:
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML <iframe> marginheight Attribute </title> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> HTML Iframe marginheight Attribute </h2> <p>Content goes here</p> <iframe src= "https://ide.geeksforgeeks.org/tryit.php" height="200" width="400" marginheight="80"> </iframe> </center> </body> </html>
Navegadores compatibles: los navegadores compatibles con HTML <iframe> marginheight Attribute 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