Shane Reustle
Shane Reustle

Reputation: 8952

Best way to get CSS3 features in IE7+

I needed to use CSS3 rounded corners in a recent project, but it also needed to work in IE7+. I ended up using jQuery Corners which works great. It simply applys CSS3 if it is available, or does other magic if not. The problem is, it doesn't always like to work on hidden elements, layered things, etc etc. The project now requires box-shadow as well which leads me to the question.

Are there any good widely used "hacks" to get the basic CSS3 properties in IE7+ ? Javascript based hacks are fine, but CSS based would be great. Thanks!

Upvotes: 0

Views: 425

Answers (2)

Michael Mullany
Michael Mullany

Reputation: 31705

You should check out CSSPIE. It does rounded corners using IE proprietary stuff under the covers.

Upvotes: 3

zandor zavies
zandor zavies

Reputation: 141

Modernizr (http://www.modernizr.com/) might be what you're after. Selectivizr (http://selectivizr.com) is also pretty handy.

Upvotes: 0

Related Questions