| IE6 | IE7 | IE8 | IE9 | Firefox | 範例 | |
| *html | V | *html .compability { color: red; } | ||||
| html* | V | V | html* .compability { color: red; } | |||
| *+html | V | *+html .compability { color: red; } | ||||
| !important | V | V | V | V | .compability { color: red !important; color: green; } | |
| * | V | V | .compability { *color: red; } | |||
| _ | V | .compability { _color: red; } | ||||
| \9 | V | V | V | V | .compability { color: red \9; } | |
| + | V | V | .compability { +color: red; } | |||
| > | V | V | V | V | .compability > p |
由於 CSS 後面的屬性會覆蓋前面的屬性
因此應該 FF 應該寫在第一個
中間是 IE7 和 IE8
最後一個才是 IE6