How to provide support for CSS3 IE?

I am using IE7.js but it does not have CSS3 support. I always use jQuery in my projects.

What is the best lightweight way to provide everyone with CSS3 selectors and IE 6,7,8 support properties?

I am not asking for HTML5 support, just asking for CSS3 support as much as possible than light.

+6
javascript jquery css xhtml css3
source share
7 answers

Try keith clarks IE CSS3 pseudo-selector emulator: http://www.keithclark.co.uk/labs/ie-css3/

I personally have not used it, but it manually analyzes your css file and adapts it for ie-browsers.

The downside is that you rely on js for css functionality.

+6
source share

The IE7.js project related in the question recently added IE9.js. This leads to more CSS3 selector support for legacy IE.

+4
source share

What you are looking for is a new library: CSS3 PIE

http://css3pie.com/

It provides IE6-8 support for several CSS3 attributes.

+3
source share

This runs the thread on webmasters.stackexchange.com with a large number of projects listed:

https://webmasters.stackexchange.com/questions/2350/how-to-enable-css3-features-in-internet-explorer-6-7-and-8/2397#2397

+2
source share

You cannot change the way the browser is implemented in the rendering process or contained in this renderer. IE9 is supposed to support many (all?) CSS3 functions, but you won’t be able to use it for some time.

As you said, for this you will need a third-party tool.

You might be able to use Google Chrome Frame, but I'm not sure if it still supports CSS3.

0
source share

You can use Google Chrome Frame http://code.google.com/chrome/chromeframe/ This will render your IE render and works like Chrome, which supports all CSS3. All you have to do is add this <meta http-equiv="X-UA-Compatible" content="chrome=1"> after your <head> . You can try it online at http://www.typefolly.com/ You have several CSS3 options, such as text-shadow or transform.

0
source share

Below is a good workaround for using ccs3 properties in ie 6 to 9

http://css3pie.com/documentation/getting-started/

0
source share

All Articles