Try adding border="0" to each one. Some browsers would render your code 
as is without spaces, some will not. They are all supposed render it 
without spaces, and I think all the latest versions of the browser do. 
It's the older ones you have to worry about.
Also, do you have a DOCTYPE declaration as your first line in all your 
documents? If you don't, then even the newer browsers will fall back 
into compatible mode, which usually means "supporting" the bugs that 
existed in older versions.

Check out www.alistapart.com, www.webmonkey.com, or www.webreference.com 
for info on DOCTYPE and style sheets. I do remember reading an article 
specifically discussing the problem you are experiencing.


On Monday, August 12, 2002, at 09:26 PM, Michael Zornek wrote:

> Ok so in my HTML I have:
>
> <img src="img/tab_1l.gif" width="9" height="24">
> <img src="img/home_on.gif" width="80" height="24">
> <img src="img/tab_10.gif" width="15" height="24">
>
> but because they are on separate lines with spaces, I get spaces 
> rendered on
> the screen. If I write the code like:
>
> <img src="img/tab_1l.gif" width="9" height="24"><img 
> src="img/home_on.gif"
> width="80" height="24"><img src="img/tab_10.gif" width="15" height="24">
>
> I get no spaces but it's harder to read ....
>
> anyone know of a way to tell  html to ignore these spaces?
>
> I could in theory do something like this in PHP:
>
> $buffer .= '
>     <img src="img/tab_1l.gif" width="9" height="24">
>     <img src="img/home_on.gif" width="80" height="24">
>     <img src="img/tab_10.gif" width="15" height="24">
> ';
>
> $buffer = someFunction($buffer);
> // this function kills all spaces and new lines in between ">" and "<" 
> chars
>
> but it seems like kind of a hassle for readability.
>
> Please help.
>
> ~ Mike
> --
> Mike Zornek | Project Leader
> Apple Student Developers
> The Insanely Great Site with the Insanely Long URL
> http://www.applestudentdevelopers.org
>
> Personal Site:
> http://www.mikezornek.com
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Brent Baisley
Systems Architect
Landover Associates, Inc.
Search & Advisory Services for Advanced Technology Environments
p: 212.759.6400/800.759.0577


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to