Link to home
Start Free TrialLog in
Avatar of JAGDIGITAL
JAGDIGITAL

asked on

TABLES!!!!!!!

I've cut up a large image and put it into a table (so I can create rollovers). However, alignment in IE4 (PC) is causing trouble. There seems to be gaps between certain cells in columns. Any ideas?
Avatar of aburr
aburr
Flag of United States of America image

Check that both the cell padding and the cell boarders of all cells are set to zero.
Avatar of jbirk
jbirk

don't forget to set cellspacing to 0 as well.
Like  this:
<Table cellpadding=0 cellspacing=0 border=0>
Then don't put any white space between the <TD> tags.
So, <TD><IMG SRC="url"></TD>
and not
 <TD>
<IMG SRC="url">
</TD>

Beleive it or not this makes a difference!
-Josh
Avatar of JAGDIGITAL

ASKER

Good answer but I had already done this -However Josh's question solved the problem! EXCELLENT!
Glad to be of help!
-josh
Good answer but I had already done this -However Josh's question solved the problem! EXCELLENT!
ASKER CERTIFIED SOLUTION
Avatar of jbirk
jbirk

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial