Thread
:
Displaying correctly in every browser except IE
View Single Post
#
4
(
permalink
)
Feb 16th, 2007, 12:00
karinne
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>
karinne
View Public Profile
Visit karinne's homepage!
Find all posts by karinne