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

I have the following which works in Firefox, Chrome and Safari. But not in IE9. It's applying rounded corners to the top left and right of a td. What am I missing?

border-left: solid 1px #444f82;
border-right:solid 1px #444f82;
border-top:solid 1px #444f82;
border-top-right-radius: 7px;
border-top-left-radius: 7px;
-moz-border-radius-topright: 7px;
-webkit-border-top-right-radius: 7px;
-khtml-border-radius-topright: 7px;
-moz-border-radius-topleft: 7px;
-webkit-border-top-left-radius: 7px;
-khtml-border-radius-topleft: 7px;
behavior: url(/survey_templates/PIE.htc);
share|improve this question
doctype declaration? – zzzzBov Mar 21 '11 at 17:43

3 Answers

up vote 58 down vote accepted

As far as I know border radius should work on IE9. You might be missing this in your page header:

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

"edge" means "use the latest rendering engine" so IE 9 will use 9, 10 uses 10, etc.

share|improve this answer
that fixed it - hope it doesn't break anything else – derekcohen Mar 21 '11 at 18:33
@derekcohen Hopefully not :D – kprobst Mar 21 '11 at 18:44
yes it breaks pie.htc which barfs on an attach method – derekcohen Mar 22 '11 at 4:43
1  
Unbelievable. Adding this just fixed all my IE9 rendering errors. Now looks exactly like WebKit with no CSS changes at all. – adam Jun 26 '12 at 16:42
thank you thank you for this! only wish I had found this answer hours ago :} – Set Sail Media Jul 16 '12 at 18:21
show 4 more comments

In addition to causes mentioned by other answers, Check in developer's tool (PressF12) your Document Mode should be set to Internet Explorer 9 Standards

enter image description here

share|improve this answer
It said IE 7 standards for Document – derekcohen Mar 21 '11 at 18:34
that's the problem change it to IE9 Standards and it should work fine. – Shekhar_Pro Mar 22 '11 at 2:09
1  
quirks mode: my CSS menu ok, no border-radius. IE9 std: my CSS menu crashes – Paul Dinh Nov 6 '11 at 4:14
6  
Every time I open the developer tools and see 'IE version Standards' I want to vomit. As if IE even knows what standards are ;) – danwellman May 28 '12 at 8:24
3  
Modifying settings on the viewing client is not a solution to web development problems. You can't know what settings clients are going to have. – Manachi Sep 11 '12 at 1:52

Have you got this at the top of your HTML document (Above the <html> tag)

<!DOCTYPE html>

IE9 requires this for the website to display the new HTML5 / CSS3 things

Edit: Or many other Doctype's (XHTML etc, but this is the shortest and easiest to remember)

share|improve this answer
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">; – derekcohen Mar 21 '11 at 18:27

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.