Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get my website to specify the document compatibility mode using:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9">

I want to be able to use CSS3 such as border-radius however, it doesn't work in IE8. I thought this is what X-UA-Compatible is supposed to do, render the page as if the visitor was using IE9.

What am I missing?

share|improve this question
How can IE 8 be expected to 'see into the future' and behave like IE9? :) – Nick G Aug 2 '12 at 10:24

3 Answers

IE9 can render pages like IE8, because IE9 is newer, it knows how to do it.

The contrary is impossible. IE8 is way older than IE9, so he has absolutely no ideas on how to render HTML5 and CSS3.

share|improve this answer
Makes Sense, Thanks. I'll just stick with PIE to get my rounded corners. – John May 12 '11 at 20:36

IE8 isn't going to 'know' IE9, since IE9 comes after. While I'm not familiar with the tag, I'm willing to bet it's designed to allow backwards compatibility.

Trying to use it to induce forwards compatibility is nonsense. IE8 doesn't know how to do CSS3 and other fun stuff, and telling it you want it to act like IE9 doesn't change that.

share|improve this answer

You can try CSS PIE.

share|improve this answer
Interesting page, I'll have to remember it. – RonLugge May 12 '11 at 21:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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