1

Are there any way to use border-radius with IE6-9 ?

faressoft
  • 19,053
  • 44
  • 104
  • 146
  • 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 Answers3

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
2

http://css3pie.com/

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
1

I suggest using IE-CSS3 its very effective in working with IE6, IE7 and IE8.

Nemanja
  • 588
  • 2
  • 6
  • 16