vote up 4 vote down star

When IE8 is released, will the following code work to add a conditional stylesheet?

<!--[if IE 8]>
  <link rel="stylesheet" type="text/css" href="ie-8.0.css" />
<![endif]-->

I've read conflicting reports as to whether this works with the beta. I'm hoping someone can share their experience. Thanks.

flag

2  
Wonderful. Yet another non-standard extension from Microsoft. – Onorio Catenacci Oct 3 '08 at 16:23
1  
This one is very old and incredibly useful because it allows non-hack CSS switches to serve different style sheets for MSIE. – Konrad Rudolph Oct 3 '08 at 17:10

8 Answers

vote up 7 vote down check

It worked for me – both in quirks mode and in standards compliance mode. However, it does not work when switching to IE8 compatibility mode.

link|flag
Did you mean IE7 compatibility mode? – Devon Oct 3 '08 at 16:26
No: Beta 2 has a browser mode and a document mode. Document mode allows for IE 7 compatibility (as well as strict mode and quirks mode). Browser mode has the options “IE 7”, “IE 8” and “IE 8 compatibility mode”. That's what I meant. – Konrad Rudolph Oct 3 '08 at 17:09
vote up 9 vote down

One thing to note:

It does work, BUT if you are loading the page/site local network (e.g. Intranet) it will load in IE7 mode by default!

This goes against MSFT's original statement of going STANDARDS by default.

e.g.

http://127.0.0.1/mysite/mypage.php  <-- IE7 by default
http://localhost/mysite/mypage.php  <-- IE7 by default
http://machinename/mysite/mypage.php  <-- IE7 by default
http://192.168.100.x/mysite/mypage.php  <-- IE7 by default
http://google.com/  <-- IE8 by default
link|flag
I think that depends on the doctype (not sure though, haven't tested): The way I understand Microsoft, IE 8 strict mode is triggered as soon as any valid HTML doctype is specified. – Konrad Rudolph Oct 4 '08 at 11:34
No, incorrect. IE8 on the local network will render in either IE5 (quirks mode) or IE7's (standards mode) if you have a doctype specified. In order to see a local site rendered in TRUE IE8 STANDARDS mode you Must explicitly tell IE that you want it (e.g. the user must choose this) – scunliffe Nov 4 '08 at 19:34
vote up 1 vote down

Tools/Compatability view settings

uncheck them all

link|flag
vote up 0 vote down

It seems to in the Beta

link|flag
vote up 0 vote down

It appears that the new IE8 (when in IE8 standards mode) will not work correctly when you have both inline and linked style sheets...if you're in quirks or ie7 mode its fine, but the moment you switch to IE8 standards mode (for both broser and docMode) your linked styles are gone!

test example --- http://mtroadwines.com/ie8test.htm

Any confirmation or info would be a big help!

link|flag
vote up 0 vote down

Hi All,

Thank you for your help. I've discovered the solution, apparently the problem was having each style sheet use its own title attribute. Once I took the title off all but the main style sheet, no prob.

This is a weird issue unique to IE8 - and although I've been told its supposed to work that way, something to do with "Stylesheet Preference" - it only serves to create problems since the solution requires you remove the title which could be helpful when scripting, etc - when you need to call the style sheet.

In any case, not sure if this is a bug, or its supposed to be that way, but I hope Microsoft investigates further.

Thanks

link|flag
vote up 0 vote down

Why even bother writing a separate stylesheet for IE8?

If you've already debugged for IE7, you can force IE8 into compatibility mode, and thus display your code as though IE8 were IE7.

All you gotta do is put this RIGHT BELOW the opening head tag. Anywhere else and it won't work.

And then that's a half hour or so less work on average per project, no intense debugging for IE8 needed!

Even Msn.com does this - kind of ironic, eh?

Wrote a blog post about it recently: http://blog.sankhomallik.com/2009/11/16/stop-wasting-time-debugging-on-ie8-when-you-dont-have-to-or-get-ie8-to-behave-like-ie7/

link|flag
What happens when IE9 comes along? – codeinthehole Nov 16 at 21:54
vote up 0 vote down

IE8 renders pretty nice compared to IE7, I have stylesheets for IE6, IE7 and IE8; at first i thought conditional comments were not working for IE8 after a bit of experimentation i found some rules were not beeing applied by IE8 just because i needed to put the ancestor or parent class first, e.g. i had a class like

.niceclass {some:properties;more:properties;}

it worked only if i changed it for something like:

.parentclass .niceclass {some:properties;more:properties;} or

#parentselector .niceclass {some:properties;more:properties;}

btw in my IE8-only css i have only one overriding rule, the rest is rendered almost like firefox, though thats not making me leave FF anyway!.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.