Mozilla/Gecko Rendering

I have been working on a new site and am having some problems with rendering images. When I have<br />
carriage <--- return here<br />
returns <--- return here<br />
like <--- return here<br />
shown here <--- return here<br />
Meaning I hit the Enter button...I get spaces between images. So I then put them all on the same line, and I was wondering if anyone else has ever run into this sort of a problem...<br />
<br />
For example, the regular code:<br />
############################<br />
<img src=http://www.htmlforums.com/archive/index.php/"images/something.jpg" /><br />
<img src=http://www.htmlforums.com/archive/index.php/"images/something1.jpg" /><br />
<img src=http://www.htmlforums.com/archive/index.php/"images/something2.jpg" /><br />
############################<br />
<br />
The fix was:<br />
<br />
############################<br />
<img src="images/something.jpg" /><img src="images/something1.jpg" /><img src=http://www.htmlforums.com/archive/index.php/"images/something2.jpg" /><br />
############################<br />
<br />
If you need more clarification, ask<br />
Thank you<br />
<br />
Illusina-<!--content-->That's a common problem, Illusina. Some browsers automatically see a space on the end of every line, whether it's truly there or not. Some, I think, add a space, but don't quote me on that. *g* I've been known to be wrong when it comes to stuff like that.<br />
<br />
You can have the same difficulty with tables, too, where an extra line is added to a cell because the </td> tags on are a different line from the rest of the cell.<br />
<br />
Peg<!--content--><img src=http://www.htmlforums.com/archive/index.php/"images/something.jpg" /><br />
<br />
The closing / is only required if you are using XHTML code on your site.<br />
<br />
If you are using only HTML then you should delete the closing / from each tag.<!--content-->Yes, I am trying to standardize on xhtml 1.0 trans and css 2...I am heavily into trying to get my sites to completely comply with all web standard areas...<br />
<br />
Anyone else have any solutions to this problem, if not the cause?<br />
<br />
Illusina-<!--content-->
 
Back
Top