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