Webpage looks good in IE, but has problem in FireFox
Oct.07, 2009 in
English Version, Web Design
I just wrote a webpage. It looked good in IE, but had problem in FireFox
The title was down lower in the page.
After checked the HTML code, I find it’s because follow code:
<td valign=”top”>
VALIGN set in TD is invalid in FireFox.
Changed to:
<td style=”vertical-align:top”>
Then the problem is fixed.
Tags: IE FIREFOX
