*html{ }//IE6及下属IE专属样式
#div{ height:50px; _height:50px ;}
#Menu{height:180px;-height:2500px; width:500px; }
//-height只有IE6以下才能用,可以通过重复定义来定义特殊效果
*+html{ }//IE7专属样式
<!--[if IE]> Only IE <![endif]-->
//所有的IE可识别
<!--[if IE 5.0]> Only IE 5.0 <![endif]-->
//只有IE5.0可以识别
<!--[if gt IE 5.0]> Only IE 5.0+ <![endif]-->
//E5.0包换IE5.5都可以识别
<!--[if lt IE 6]> Only IE 6- <![endif]-->
//仅IE6可识别
<!--[if gte IE 6]> Only IE 6/+ <![endif]-->
//IE6以及IE6以下的IE5.x都可识别
<!--[if lte IE 7]> Only IE 7/- <![endif]-->
//仅IE7可识别
最近写后台时候用到自适应,遇到的很多兼容性问题!
posted on
浙公网安备 33010602011771号