Mega Code Archive

 
Categories / JavaScript Tutorial / HTML Tags
 

Image vspace

The vspace property specifies the number of extra pixels that should appear on the top and bottom of the image. This property can only be set by the VSPACE attribute of the tag. <html>     <head>     <title>Example of vspace property</title>     </head>     Text at top of image.<br>     <img name="circle" src="http://www.rntsoft.com/style/logo.png" VSPACE=100><br>     Text at bottom of image.<br>     <script language="JavaScript">     <!--     document.write(document.circle.vspace);     -->     </script>     </html>