vSpace attribute (iframe, img, object, ...)
Specifies the number of pixels to use as a margin at the top and bottom sides of an object.
This attribute is deprecated, use the margin style property instead.
JavaScript page for this attribute: vspace. You can find other example(s) there. |
Possible values:
Integer that sets the amount of spaces before and after the element. Do not write the unit 'px' after the integer, because it is not supported by Internet Explorer.
Default: this attribute has no default value.
Example HTML code 1:
This example illustrates the use of the vSpace attribute:
|
||||
Each image has a 5px margin:<br /> <img src="picture.gif" width="30px" height="30px" hspace="5" vspace="5" /> <img src="picture.gif" width="30px" height="30px" hspace="5" vspace="5" /> <br /> <img src="picture.gif" width="30px" height="30px" hspace="5" vspace="5" /> <img src="picture.gif" width="30px" height="30px" hspace="5" vspace="5" /> <br /><br /><br /> Each image has a 10px margin:<br /> <img src="picture.gif" width="30px" height="30px" hspace="10" vspace="10" /> <img src="picture.gif" width="30px" height="30px" hspace="10" vspace="10" /> <br /> <img src="picture.gif" width="30px" height="30px" hspace="10" vspace="10" /> <img src="picture.gif" width="30px" height="30px" hspace="10" vspace="10" /> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
Recommendation:
|
||||
<head> <style> .margin5px { width: 30px; height: 30px; margin: 5px; } .margin10px { width: 30px; height: 30px; margin: 10px; } </style> </head> <body> Each image has a 5px margin:<br /> <img src="picture.gif" class="margin5px" /> <img src="picture.gif" class="margin5px" /> <br /> <img src="picture.gif" class="margin5px" /> <img src="picture.gif" class="margin5px" /> <br /><br /><br /> Each image has a 10px margin:<br /> <img src="picture.gif" class="margin10px" /> <img src="picture.gif" class="margin10px" /> <br /> <img src="picture.gif" class="margin10px" /> <img src="picture.gif" class="margin10px" /> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by tags:
applet, iframe, img, input:button, input:checkbox, input:file, input:image, input:password, input:radio, input:range, input:text, marquee, object, table
Related pages:
External links:
User Contributed Comments