El atributo de altura HTML <embed> se utiliza para especificar la altura del contenido incrustado.
Sintaxis:
<embed height = "pixels">
Valores de atributos:
- píxeles: el valor del ancho se establece en términos de píxeles. Se utiliza para especificar la altura del contenido incrustado.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML embed height Attribute </title> <style> q { color: #00cc00; font-style: italic; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML embed height Attribute</h2> <embed src="loading2.swf" width = "400px" height="300px" type="application/x-shockwave-flash"> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de altura de incrustación HTML 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 ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA