1) There is atleast one blank link to a style sheet like
<Link href="" rel="stylesheet">
2) Blank script reference
<script src="" language="javascript/>
3) Broken important html tags, like <img> without </img> or empty source attributes for image, or background color
4) missing ";" after a css class statement like
.href
{
color:black
}
(there should be semicolon after black, and a "." before the class name href)
... and so on.
Be careful when you code html, in Firefox. A small mistake can cause it to behave wierdly. FF will distort styles, if you dont specify the parmaeters properly, or there is insufficient space to draw. Also, it will load the page twice, silently if there are any errors (like mentioned above)... and this can cause your application to behave wierdly.
|