In the jQuery tabs example in http://jqueryui.com/demos/tabs/, the tab corners are not rounded in IE7. How can we make them rounded in IE7? Where to get the complete code for these examples? Apparently the actual css files used are missing.
Asked
Active
Viewed 222 times
0
-
2possible duplicate of [Creating rounded corners in IE7 / IE8](http://stackoverflow.com/questions/6941158/creating-rounded-corners-in-ie7-ie8) – jrummell Oct 04 '12 at 14:06
2 Answers
3
You would have to use a javascript hack in IE7, as it doesn't support border-radius
in CSS.
See Creating rounded corners in IE7 / IE8 for a few options.
0
The short answer: You can't. IE7 (and 8) doesn't support what you're trying to do. http://caniuse.com/#feat=border-radius
The slightly longer answer: You might be able to fake it: http://code.google.com/p/ie7-js/

Mikkel Løkke
- 3,710
- 23
- 37