Home  >  Article  >  Web Front-end  >  JS method to set vspace and hspace attributes of web page images_javascript skills

JS method to set vspace and hspace attributes of web page images_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:06:381952browse

The example in this article describes how to set the vspace and hspace attributes of web page images in JS. Share it with everyone for your reference. The specific analysis is as follows:

hspace can be specified in pixels as the distance between the text on the left and right sides of the image and the image; the vspace value is the number of pixels between the text on the top and bottom and the image

<!DOCTYPE html>
<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"
width="107" height="98">
<p>Some text. Some text. Some text. Some text.</p>
<input type="button" onclick="setSpace()" 
value="Set hspace and vspace">
</body>
</html>

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn