Does anybody know if there is a plugin like HTML5 shiv for CSS3 that allows CSS3 to be rewritten and render properly in browser versions before IE9?
Asked
Active
Viewed 4,788 times
7
-
2While all the suggestions above are good, please keep in mind that as more javascript polyfills are thrown at older browsers (namely, IE 6 & 7) the browser's performance could suffer. Use the polyfills in moderation - or try to sell the idea of using progressive enhancement. The tenet of progressive enhancement is that all browsers do not need to provide the exact same look or experience. Small differences such as square corners that would be rounded on another browser don't provide an unusable experience, even if they don't have the same kind of flair to them. :) – bridgestew Sep 22 '12 at 05:27
3 Answers
3
CSS3Pie is awesome (and +1 to both the answers that suggested it), but it only covers a small number of CSS properties.
If you need other CSS features to work, then you may want to look at some of the following as well:
- CSS Sandpaper
- Selectivizr
- Any one of several scripts listed here

SDC
- 14,192
- 2
- 35
- 48