Purify
Purify

Reputation: 589

IE9 rendering issue

I've been trying to figure this issue out for about an hour now. I've asked some friends but they didn't have much luck either.

The problem is with this site: http://tomdwyerdesign.com/ Load it in Chrome and it's fine. Load it in IE10 and it's fine... load it in IE9 and it's not.

It loses a good portion of its css. I've used the html5shiv trick and still it refuses to work.

Another website: http://tomdwyerdesign.com/new this loads fine and shares almost an identical header.

Anyone know why IE9 won't render this correctly?

Upvotes: 1

Views: 1271

Answers (1)

Kazetsukai
Kazetsukai

Reputation: 2258

IE is going into quirks mode on your new site. Checking with W3 Validator shows a warning that is likely your problem: IE will go into quirks mode if you have comments before your doctype.

Try moving your doctype before the comments, and see if that helps.

Upvotes: 1

Related Questions