IE浏览器下css hack
- \9 :所有IE浏览器都支持
- _和- :仅IE6支持
- * :IE6、IE7支持
- \0 :IE8、IE9支持
- \9\0 :IE8部分支持、IE9支持
- \0\9 :IE8、IE9支持
eg:
.color: { color:#666\9; //IE8 * color:#999; //IE7 _color:#888; //IE6 } :root .color{color:#666\9;}//IE9
eg:
.color: { color:#666\9; //IE8 * color:#999; //IE7 _color:#888; //IE6 } :root .color{color:#666\9;}//IE9