Thijs Hakkenberg wrote:

Dear list,

My website looks fine except in IEX where behaves strange:
http://kunstomhetlijf.nl/res2/

Anyone know why? A CSS issue?

I don't know if this is a CSS issue or not. As others have pointed out, you need to validate and correct many of the markup errors found on the page you referenced...

I do know that your page is switching to quirks mode in the IE browsers.

You are using an incomplete doctype

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"


If it was / is your intent to have the IE's in Quirks mode then leave it as is.... if it wasn't your intent, then change to a complete doctype which includes a system identifier.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd";>

For more information see: http://gutfeldt.ch/matthias/articles/doctypeswitch.html
and http://www.quirksmode.org/css/quirksmode.html


HTH

Jim Nannery
www.oldcurmudgeon.net


______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to