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.