IE兼容

(1)只在IE下起作用的条件注释,例:只在IE下生效
 只在IE6下生效
 
 只在IE6以上版本生效
 
只在IE8上不生效
 
 非IE浏览器生效
   

*html *前缀只对IE6生效

*+html *+前缀只对IE7生效

@media screen\9{...}只对IE6/7生效

@media \0screen {body { background: red; }}只对IE8有效

@media \0screen\,screen\9{body { background: blue; }}只对IE6/7/8有效

@media screen\0 {body { background: green; }} 只对IE8/9/10有效

@media screen and (min-width:0\0) {body { background: gray; }} 只对IE9/10有效

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {body { background: orange; }} 只对IE10有效

你可能感兴趣的:(IE兼容)