I want to use rounded border in IE7. I use moz-border-radius property in Firefox.Like this I want to use css property in IE7.Can I use ?
+3
A:
IE8 and lower doesn't have a CSS property for rounded corners.
You can either revert to using images for corners, or reverting to a JavaScript solution such as CurvyCorners.
CurvyCorners doesn't require anything special setup other than adding it to the head. It will basically add support for -webkit-border-radius
and etc.
Andrew Moore
2009-08-08 04:59:57
yes, the old story. The most common browser is also the "lowest common denominator" and if true to its history will probably support css3 some time around when the universe dies.
SpliFF
2009-08-08 05:23:44
Yup, no CSS3 and no HTML5 in current IE browsers.
kmiyashiro
2009-08-08 16:41:44
Hell... only some of CSS2.1 in IE8!
kmiyashiro
2009-08-08 16:42:21
A:
The correct answer is no, but there are workarounds. CSS Pie will let you do many things, with a little javascript: http://css3pie.com/
American Yak
2010-08-26 23:56:27