Open In App
Related Articles

HTML | <img> vspace Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML <img> vspace Attribute is used to specify the number of whitespaces on bottom and top side of an image.

Note: The HTML vspace Attribute not supported by HTML5

Syntax:

<img vspace="pixels">

Attribute Values:

  • pixels: It specifies the number of whitespaces on top and bottom of an image in terms of pixels.

Example:




<!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
            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
            alt="Submit" vspace = "60" width="42" height="42"
            align="middle"/>
        It is a computer science portal for geeks
    </p>
</body
  
</html>                    


Output:

Supported Browsers: The browser supported by HTML <img> vspace Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 06 Jan, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials