View Single Post
  #4 (permalink)  
Old Feb 16th, 2007, 12:00
karinne's Avatar
karinne karinne is offline
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Displaying correctly in every browser except IE

IE treats white-space in your code as an actual space. So ... instead of having it like this

Code: Select all
<td>
  <img ....>
</td>
<td>
  <img ....>
</td>
Put it all on the same line like this

Code: Select all
<td><img ....></td>
<td><img ....></td>
Reply With Quote