cssHack

cssHack

1.IE条件注释法

//只在IE浏览器下才生效

//只在IE6下才生效

//lt小于,gt大于,lte小于等于,gte大于等于

2.选择符前缀法

//只对IE6有效
*html{color:red}
//只对IE7有效
*+html{color:yellow}

3.样式属性前缀法

//在IE6下有效
html{_width:100px;}
//在IE7下有效
html{ +background-color:red}
//在IE6,7有效
html{*width:100px;}
//IE9以下有效
html{background:red\9;}

你可能感兴趣的:(cssHack)