Home > Article > Web Front-end > JS method to set vspace and hspace attributes of web page images_javascript skills
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.