Are there any way to use border-radius with IE6-9 ?
Asked
Active
Viewed 1,749 times
1
-
possible duplicate of [Is there a way to get border-radius and gradient backgrounds in IE?](http://stackoverflow.com/questions/2969772/is-there-a-way-to-get-border-radius-and-gradient-backgrounds-in-ie) – Paul D. Waite Apr 04 '11 at 21:38
3 Answers
3
CSS Pie does a good job at this (and other css3 features) in IE 6-8.
IE9 supports border-radius natively.

Cronco
- 590
- 6
- 18
-
-
It is very good. but when I put it on my nav, a white color appear on the bottom then disapper after a second ! How can I fix that – faressoft Apr 04 '11 at 21:50
-
That's a bug with CSS Pie, I believe. Remember, it is beta software, still. – Cronco Apr 04 '11 at 22:06
2
Is as of yet one of the only ways, also if you are using border radius make sure you declare all 4 sides of the border like so,
border-radius: 5px 5px 5px 5px;
As this is how IE9 reads them.
Good luck.

Basic
- 1,818
- 5
- 21
- 31