<!--[if !IE]> 除IE外都可识别 <![endif]-->
<!--[if IE]> 所有的IE可识别 <![endif]-->
<!--[if IE 5.0]> 只有IE5.0可以识别 <![endif]-->
<!--[if gt IE 5.0]> IE5.0包换IE5.5都可以识别 <![endif]-->
<!--[if IE 6]> 仅IE6可识别 <![endif]-->
<!--[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]-->
<!--[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]-->
<!--[if IE 7]> 仅IE7可识别 <![endif]-->
<!--[if lt IE 7]> IE7以及IE7以下版本可识别 <![endif]-->
<!--[if gte IE 7]> IE7以及IE7以上版本可识别 <![endif]-->
<!--[if IE 8]> 仅IE8可识别 <![endif]-->
<!–[if lt IE 8]> IE7或更低版本可识别 <![endif]-->
<!–[if gte IE 8]> 高于或者等于IE8版本可识别 <![endif]-->
lte:就是Less than or equal to的简写,也就是小于或等于的意思
lt:就是Less than的简写,也就是小于的意思
gte:就是Greater than or equal to的简写,也就是大于或等于的意思
gt:就是Greater than的简写,也就是大于的意思
!:就是不等于的意思,跟javascript里的不等于判断符相同