El atributo HTML Iframe frameborder se utiliza para especificar si se muestra o no el borde alrededor del contenido de un elemento <Iframe> .
Sintaxis:
<iframe frameborder="1 | 0">
Valores de atributos:
- 0: Tiene un valor por defecto. Establece la frontera en un estado.
- 1: Establece el estado on-off del borde.
Nota: Este atributo no es compatible con HTML5 como reemplazo, puede usar CSS.
El siguiente programa ilustrará el atributo HTML Iframe frameborder:
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML <Iframe> frameborder Attribute </title> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> HTML Iframe frameborder Attribute </h2> <p>Content goes here</p> <iframe src= "https://ide.geeksforgeeks.org/tryit.php" height="300" width="400" marginheight="40" frameborder="0"> </iframe> </center> </body> </html>
Navegadores compatibles: los navegadores compatibles con HTML <Iframe> frameborder 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