Image vspace Property
Image Object
Definition and Usage
The vspace property sets or returns the value of the vspace attribute of an image.
The vspace attribute specifies the whitespace on top and bottom of an
image.
Syntax
imageObject.vspace=pixels
Browser Support

The vspace property is supported in all major browsers.
Example
Example
Set the hspace and vspace properties of an image:
<html>
<head>
<script>
function setSpace()
{
document.getElementById("compman").hspace="50";
document.getElementById("compman").vspace="50";
}
</script>
</head>
<body>
<img id="compman" src="compman.gif" alt="Computerman">
<p>Some text. Some text. Some text. Some text.</p>
<input type="button" onclick="setSpace()"
value="Set hspace and vspace">
</body>
</html>
Try it yourself »
Image Object
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]