Title: Picture Spacing
URL: http://www.activejump.com/d-6.shtml
Email: webmaster@activejump.com
Introduction
As you may know, the normal spacing tags also divide pictures, such as the <P> and <BR> tags.
However, there are special spacing tags just for pictures which is what this section focuses on.
Horizontal Space
This tag will allow you to set the picture a certain horizontal distance away from other objects.
The tag for the horizontal space looks
like HSPACE="#". This adds onto the picture tag, so the end result looks like
<IMG SRC="url" HSPACE="#">
The #, is replaced with the horizontal distance you want the picture to be set away from other objects. Below is an example, using
the horizontal space tag. The space on the example is set to 30.
|
index.html - Notepad |
....<BODY>
<IMG SRC="images/ex.gif" HSPACE="30"> Nearest Text
</BODY>....
|
|
|
My Homepage - Microsoft Internet Explorer |
Nearest Text
|
|
Verticle Space
This tag will allow you to set the picture a certain verticle distance away from other objects.
The tag for the verticle space looks
like VSPACE="#". This adds onto the picture tag, so the end result looks like
<IMG SRC="url" VSPACE="#">
The #, is replaced with the verticle distance you want the picture away from other objects. Below is an example, using the verticle
space tag. The space on the example is set to 30.
|
index.html - Notepad |
....<BODY>
<IMG SRC="images/ex.gif" VSPACE="30"><BR> Nearest Text
</BODY>....
|
|
|
My Homepage - Microsoft Internet Explorer |
 Nearest Text
|
|
|