Its strange but when I add a form to my page, firefox seems to load the whole page first, then apply the style only after the page is fully loaded.
This behaviour is only in FireFox, and not in IE.
And only happens when I include a form.
Any ideas how to fix it?
this is the simplified document.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="css/main.css" rel="stylesheet" type="text/css" />
<title>My sites title</title>
</head>
<body leftmargin="0" rightmargin="0" topmargin="0">
<h1>Contact Us</h1></td>
<form method="POST" action="mailer.php">
<input type="text" name="name" size="19"><br>
<br>
<input type="text" name="email" size="19"><br>
<br>
<textarea rows="9" name="message" cols="30"></textarea>
<br>
<br>
<input type="submit" value="Submit" name="submit">
</form>
<br />
</body>
</html>