Home > Web Front-end > JS Tutorial > 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
Release: 2016-05-16 16:06:38
Original
1966 people have browsed it

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>
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template