El atributo HTML <img> vspace se utiliza para especificar el número de espacios en blanco en la parte inferior y superior de una imagen.
Nota : el atributo HTML vspace no es compatible con HTML5
Sintaxis:
<img vspace="pixels">
Valores de atributos:
- píxeles: especifica el número de espacios en blanco en la parte superior e inferior de una imagen en términos de píxeles.
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML img vspace Attribute </title> <style> h1, h2 { color:green; text-align:center; } h3 { font-weight:bold; } </style> </head> <body> <h1 style="color:green;"> GeeksforGeeks </h1> <h2>HTML <img> vspace Attribute</h2> <h3>Image without vspace Attribute</h3> <p> <img id="myImage" src= "https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" alt="Submit" width="42" height="42" align="middle"/> It is a computer science portal for geeks </p> <h3>Image with vspace Attribute</h3> <p> <img id="myImage" src= "https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" alt="Submit" vspace = "60" width="42" height="42" align="middle"/> It is a computer science portal for geeks </p> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con HTML <img> vspace Attribute se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA