IE的if条件Hack
所有IE识别
IE5识别
IE5.5识别
IE6识别
IE7识别
IE5以上识别
IE6以上识别
IE6以下识别
IE7以下识别
IE6和IE6以上识别
IE6和IE6以下识别
非IE识别
总结:gt为> lt为< gte为≥ lte为≤

CSS Hack
color:red;/*FF识别*/ #color:blue;/*IE7识别*/ _color:green; /*IE6识别*/
@media all and (min-width: 0px){#name_a {color:yellow}}/*Opera识别*/
html*#name_a {[color:black;color:#999;]}/* Safari有效*/
color:red;/*FF识别*/ *+color:green;/*IE识别*/
#name_c /*ff*/ *html #name_c /*ie6*/ *+html #name_c /*ie7*/
IE6识别
IE7识别
IE5以上识别
IE6以上识别
IE6以下识别
IE7以下识别
IE6和IE6以上识别
IE6和IE6以下识别
非IE识别
总结:gt为> lt为< gte为≥ lte为≤