Image hspace Property
Image Object
Definition and Usage
The hspace property sets or returns the value of the hspace attribute of an image.
The hspace attribute specifies the whitespace on left and right side of an
image.
Syntax
imageObject.hspace=pixels
Browser Support

The hspace 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]