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 having issues with rounded corners in IE8. I've tried a few methods without success.

Here is my code:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>

<style>

BODY
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8em;
    padding: 2px;
    margin: 2px;
    color: #505050;
    line-height: normal;
}

P
{
    margin: 4px;
}

.categoryheading3
{
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    background-color: #297BB6;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 0;
    text-align: center;
    margin: 0px;
}

.leftcolumn
{
    width: 174px;
    padding: 8px;
    float: left;
    display: inline-block;
    background-color: transparent;
/*--min-height: 500px*/
    overflow: hidden;
}

.lefttop
{
    display: inline-block;
    width: inherit;
    margin: 0 5px 2em 0;
    float: left;
    width: 160px;
    background-color: #FFFFFF;
    border: 2px solid #297BB6;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;    
}
</style>


</head>
<body>

<div class="leftcolumn">
<div class="lefttop">
    <H4 class="categoryheading3">Heading</H4>
        <p>sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text </p>
</div>
 </div>
</body>
</html>

Which produces this in Firefox:

firefox example

But this in IE8:

IE8 makes me sad

If anyone has any tips I'd be very grateful!

edit: Joseph helped by suggesting to use pie.htc, however I'm still struggling with this element not working:

.categoryheading3
{
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    behavior: url(PIE.htc);
    background-color: #297BB6;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 0;
    text-align: center;
    margin: 0px;

}
share|improve this question
it looks to me like your css is missing the standard border-radius property – ph33nyx Mar 6 at 21:07
Your IE8 screenshot actually looks Metro UI ish :) – Nikhil Patil May 22 at 8:05

6 Answers

up vote 26 down vote accepted

Internet Explorer (under version 9) does not natively support rounded corners.

There's an amazing script that will magically add it for you: CSS3 PIE.

I've used it a lot of times, with amazing results.

share|improve this answer
This works well for the element which is round on all corners, however I can't seem to get it to work on the one which only has rounded top left+right - any suggestions? – kevyn Aug 16 '11 at 11:31
2  
@kevyn: Can you show me the CSS you're using? CSS3 PIE supports only shorthand properties (border-radius: 5px 5px 0 0;), not the longhand ones (border-radius-topleft: 5px; etc.). – Joseph Silber Aug 16 '11 at 11:35
I edited my CSS which is in the OP, and I added behavior: url(PIE.htc); into both elements. The element with 4 rounded corners works well, but the one with only the top 2 corners doesn't make any difference – kevyn Aug 16 '11 at 11:40
I've updated my post to include the CSS which I can't get to work (I tried your suggestion of using shorthand format) – kevyn Aug 16 '11 at 11:44
2  
You're only using the vendor-prefixed versions. CSS3 PIE works with the standard one: border-radius. – Joseph Silber Aug 16 '11 at 11:51
show 3 more comments

I didnt know about css3pie.com, a very useful site after seeing this post:

But what after testing it out it didnt work for me either. However I found that wrapping it in the .PHP file worked fine. So instead of:

behavior: url(PIE.htc);

use this:

behavior: url(PIE.php);

I put mine in a folder called jquery, so mine was:

 behavior: url(jquery/PIE.php);

So goto their downloads or get it here:

http://css3pie.com/download-latest

And use their PHP file. Inside the PHP file it explains that some servers are not configured for proper .HTC usage. And that was the problem I had.

Try it! I did, it works. Hope this helps others out too.

share|improve this answer
unfortunately this still didn't do anything for me on IE8 :( – Vicer Jul 30 '12 at 2:38

http://fetchak.com/ie-css3/ works for IE 6+. Use this if css3pie doesn't work for you.

share|improve this answer

As Internet Explorer doesn't natively support rounded corners. So a better cross-browser way to handle it would be to use rounded-corner images at the corners. Many famous websites use this approach.

You can also find rounded image generators around the web. One such link is http://www.generateit.net/rounded-corner/

share|improve this answer
1  
thats a very old approach, I wouldnt reccommend this. Libs like PIE made css3 possible in ie8 and is all we need. – Juan Jan 5 at 16:06

PIE.htc worked for me great (http://css3pie.com/), but with one issue:

You should write absolute path to PIE.htc. It hasn't worked for me when I used relative path.

share|improve this answer
it looks like relative pathing is not relative to the css file on this, but relative to the docroot instead – ph33nyx Mar 6 at 21:05
ph33nyx is almost correct. When using Internet Explorer behaviors, the document being referenced is relative to the calling HTML file, not the CSS file. Just be aware of this when you use it so you don't go crazy trying to find out why it isn't working. – Neil Monroe Mar 21 at 22:32

Rounded corners in IE8

Internet Explorer Version 8 doesn't support rounded corners but there are few other solutions you may consider:

  • Use Rounded Corners Images instead (this is a good resource)

  • Use a jQuery Corner plugin from here

  • Use a very good script called CSS3 PIE from here

  • Another good script is IE-CSS3 from here

Hope it was useful. Good Luck!

share|improve this answer

protected by Community 22 hours ago

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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