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

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

I am looking for something that will work on IE6 +

+4
source share
4 answers

Take a look at CSS3PIE . This allows you to add most of the CSS3 features to Internet Exploder.

+4
source

you can do it Modernizr (a useful JavaScript tool for implementing CSS3 backups). or CSS3 PIE or Selectivzr

Reads well

Using CSS3: Older Browsers and General Considerations

+2
source

I believe you can find something like http://selectivizr.com/

0
source

Fyi

Google chrome frame

Google Chrome Frame is an open source plugin that makes it easy to open Google Chrome web technologies and speed up the JavaScript engine in Internet Explorer. Using Google Chrome Frame, you can:

  • Start using open web technologies such as HTML5 canvas tag-right away, even technologies that are not yet supported on Internet Explorer 6, 7, 8, or 9.
  • Take advantage of JavaScript performance improvements to make applications faster and more responsive.

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

0
source

Source: https://habr.com/ru/post/1435717/


All Articles