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

I set a curve style for button and tab control. It's working properly in Firefox, but not in IE.

Here is the CSS:

-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-o-border-radius: 15px;
border-radius: 15px;
share|improve this question

5 Answers

-webkit-border-radius: 15px; /* Experimental implementation of CSS 3 feature for webkit */
-moz-border-radius: 15px;    /* Experimental implementation of CSS 3 feature for Mozilla */
-o-border-radius: 15px;      /* Experimental implementation of CSS 3 feature for Opera */
border-radius: 15px;         /* CSS 3 feature that is not yet a recommendation */

You shouldn't expect to see support in it for Internet Explorer (except version 9 beta)

However, it is just cosmetic, so don't worry about it. People using Internet Explorer just don't get curved corners — it isn't a big deal, the content is still available.

share|improve this answer
thanks.. ya i know that.. but i need to disply curves in ie too... so help me to add this in ie too... – joji Nov 29 '10 at 10:23

IE isn't able to work with that. If you want to curve your edges in IE you'll have to use another approach.

share|improve this answer
how... can u giv me some example... – joji Nov 29 '10 at 10:16
Lots of extra elements with carefully positioned background images. – Quentin Nov 29 '10 at 10:17
Or look for a javascript solution. They are out there somewhere. – J. Vermeire Nov 29 '10 at 10:18
thanks.. can u giv me some links or some simple examples... – joji Nov 29 '10 at 10:24
CurvyCorners maybe? rocketdownload.com/scripts/program/… It's the first thing which popped up when I googled for it. I bet there are loads more scripts than this one. – J. Vermeire Nov 29 '10 at 10:26
show 1 more comment

You can't do this in IE I believe. There are some hacks to get it to work though. I've used this before and I think it good with older vs. of ie too. http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser

share|improve this answer

If you really wnt a curved corner in IE go to Curvycorners & download a stable version of it. Its just a javaScript file. Then refer the "curvycorners.src.js" file from your project & write the same CSS code you are writing "-webkit-border-radius: 15px; -moz-border-radius: 15px; " except the other two properties. It will definitely work. Works for me, so for you.

share|improve this answer

if you want to apply CSS in IE8 or greater then it may no need to changes in CSS as you declare in FF but if you need to use IE7 then you may need to use below syntax.

#webkit-border-radius: 15px;
#moz-border-radius: 15px;
#o-border-radius: 15px;
#border-radius: 15px;

Thanks.

share|improve this answer
itz not working in any ie ...only in ie9 – joji Nov 29 '10 at 10:44
This will cause the properties to apply only to browsers which (incorrectly) ignore # characters at the start of property names. As a result this will stop the properties applying to Webkit, Mozilla and Opera while allowing them to apply to broken versions of Internet Explorer which don't support them anyway. – Quentin Nov 29 '10 at 14:57

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.