CSS hack元素对照表
FF | chorme | IE6 | IE7 | IE8及以上 | |
*html | × | × | √ | × | × |
*+html | × | × | × | √ | × |
_ | × | × | √ | × | × |
* | × | × | √ | √ | × |
!important | √ | √ | × | √ | √ |
√ 表示该CSS属性对相应浏览器有效
× 表示该CSS属性对相应浏览器无效
特别说明:
/* 这个样式对IE6,red有效,对非IE6 blue有效 */ .exm1{ color:blue !important; color:red; } /* 这个样式对IE6,blue有效,对非IE6 blue有效 */ .exm1{ color:red; color:blue !important; }