0

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.

tereško
  • 58,060
  • 25
  • 98
  • 150
daniele
  • 167
  • 3
  • 10
  • 2
    possible 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 Answers2

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.

Community
  • 1
  • 1
jrummell
  • 42,637
  • 17
  • 112
  • 171
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