You have a mess at the top of your page where the DOCTYPE is SUPPOSED to be - and it's not. The rendered code looks like this:
Quote:
<style type="text/css">
<!--
body {
background-image: url();
}
-->
</style><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<link href="*.css" rel="stylesheet" type="text/css" />
<head profile="http://gmpg.org/xfn/11">
|
That <style> block does NOT belong there, it belongs INSIDE the <head> section, as does the <link> tag, which is also in the wrong place.
IE is rendering in QUIRKS mode because it does not see a valid DOCTYPE - and neither does Firefox.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|