<form> <input type="image" etc. and hspace

liunx

Guest
I'm using a piece of code that is below. Problem I have is that the images will not abut to each other even though I have HSPACE="0" in each. What is separating them? It works except the spacing.<br />
<br />
Suggestions please.<br />
RON C<br />
<br />
<FORM><br />
<br />
<input type="image" src=http://www.htmlforums.com/archive/index.php/"home.gif" BORDER="0" HSPACE="0" VSPACE="0" height=36 width=144 align=ABSBOTTOM onClick="parent.frames[1].location='buttons2.htm';parent.frames[2].location='home.htm';"><br />
<input type="image" .....<br />
<input type="image" .....<br />
<input type="image" .....<br />
<br />
</FORM><!--content-->Put all you image buttons on the same line and see if that helps.<br />
<br />
<br />
<FORM> <br />
<br />
<input type="image" src=http://www.htmlforums.com/archive/index.php/"home.gif" BORDER="0" HSPACE="0" VSPACE="0" height=36 width=144 align=ABSBOTTOM onClick="parent.frames[1].location='buttons2.htm';parent.frames[2].location='home.htm';"> <br />
<input type="image"><input type="image"><input type="image"> <br />
<br />
</FORM><!--content-->Thanks for the help.<br />
<br />
Boy is html picky. Is this documented somewhere?<br />
<br />
Again thanks,<br />
<br />
RON C<!--content-->No...this is a "Mysterious Secret of the HTML Gurus" }:-)<br />
<br />
Its one of those nagging little things you learn as you go along thats not really covered in any books. When you drop down to a newline there will be a space between the newline and the previous line. <br />
<br />
Kevin<!--content-->Kevin,<br />
<br />
You sure saved me a bunch of time. I thought that I knew a lot about html. <br />
<br />
Here's to the Guru's.<br />
<br />
Thanks,<br />
RON C<!--content-->
 
Back
Top