satya.komatineni (AT) gmail (DOT) com wrote:
Quote:
I have struggling with this for 2 days. I searched far and wide in
google and msdn etc. No luck. Hope one of you may have seen this. I am
seeing this in ie6 and ie7
Your problems are two.
|
a) No doctype.
Without a doctype, IE is in quirks mode - and its does its own thing.
Add a html strict doctype and fix your html. (Transitional would work
but has other defects).
b) Invalid markup.
You have no closing </p>s, you put a table (a block) within a paragraph,
in in-line context, and then put an invalid <image> tag in the <td>,
There is no such tag a <image> - you need <img>.
Fix those and your problems will go away.
Regards
Ian