OneMore
OneMore

Reputation: 1179

Is there any way to use CSS3 properties in older browser (JS?)

For example, border-radius, box-shadow, etc...

I am looking for something that would work on IE6+

Upvotes: 4

Views: 117

Answers (4)

Muthu Kumaran
Muthu Kumaran

Reputation: 17910

FYI

Google Chrome Frame

Google Chrome Frame is an open source plug-in that seamlessly brings Google Chrome's open web technologies and speedy JavaScript engine to Internet Explorer. With Google Chrome Frame, you can:

  • Start using open web technologies—such as the HTML5 canvas tag—right away, even technologies that aren't yet supported in Internet Explorer 6, 7, 8, or 9.
  • Take advantage of JavaScript performance improvements to make your apps faster and more responsive.

http://www.google.com/chromeframe?quickenable=true

Upvotes: 0

NullPoiиteя
NullPoiиteя

Reputation: 57322

you can do this by Modernizr (A useful JavaScript tool for implementing CSS3 fallbacks). or CSS3 PIE or Selectivzr

Good reads

Using CSS3: Older Browsers And Common Considerations

Upvotes: 2

Gung Foo
Gung Foo

Reputation: 13558

Take a look at CSS3PIE. It allows you to add most of the CSS3 functionality in Internet Exploder.

Upvotes: 4

Kyra Westwood
Kyra Westwood

Reputation: 147

I believe you may be looking for something like http://selectivizr.com/

Upvotes: 0

Related Questions