On Sun, 16 May 2004 21:06:38 -0400, "B&A Hehmann"
<hehmannba (AT) adelphia (DOT) net> wrote:
Quote:
Hi all.
How can I place button pictures next to each other without a gap between the
two buttons?
I've tried using HSPACE="0", but there is still a discernable gap between
the two.
Does anyone out there know of a different method?
My attempt: <img src="images/button_1.jpg" border="0" align= "absmiddle"
hspace="0" |
A newline in the source at the end of the tag causes a gap. That is:
<img src="images/button_1.jpg">
<img src="images/button_2.jpg">
will cause a gap, but
<img src="images/button_1.jpg"><img
src="images/button_2.jpg">
will not. Note that the newline in the first example is between the
two tags, but the newline in the second is within the second tag.
Strange but true.
--
Arthur.