可以在不同浏览器下打开本页,测试hack是否生效。
IE6 | |
---|---|
*property:value; | IE6 IE7 |
+property:value; | IE6 IE7 |
_property:value; | IE6 |
*:first-child+html div {background-color:black; } | IE7 |
property:value\0; | IE8 IE9 IE10 |
property:value\0\9; | 其实和\0是一样的 |
property:value\9; | 所有IE |
property:value\9\0; | IE9 IE10 |
* html #test { ... } | IE6 |
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { #ie10 { color: red; } } | IE10 |
@media all and (min-width:0px){ div {background-color:black\0;} } | 之前测试是Oprea的,但是现在IE9,IE10也生效了 |
@media all and (min-width:0px){ div {background-color:black;} } | 之前测试是非IE的,但是现在IE9,IE10也生效了 |