CSS hack浏览器兼容一览表
这里没有IE8的Hack 表,在页面加入如下代码让IE8使用IE7的显示模式。
1 | <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> |
css Hack
1 2 3 4 5 6 7 8 9 | selector{ property:value; /* 所有浏览器 */ property:value\9; /* 所有IE浏览器 */ property:value !important; /* IE7, FF */ *property:value; /* IE6,IE7,IE8*/ +property:value; /* IE7 */ property:value\0; /* IE8 */ _property:value; /* IE6,IE8 */ } |
图片来源:http://centricle.com/ref/css/filters/
