CSS条件注释
gt /Greater than/大于/<!--[if gt IE 5.5]>
gte /Greater than or equal to/大于等于/<!--[if gte IE 5.5]>
lt /Less than/小于/<!--[if lt IE 5.5]>
lte /Less than or equal to/小于等于/<!--[if lte IE 5.5]>
! /Note/不等于/<!--[if !IE 5.5]>
对于HTML的注释,例如:
<!--[if !IE]><!-->
您使用不是 Internet Explorer
<!--<![endif]-->
<!--[if IE 6]><!-->
您正在使用Internet Explorer version 6
或者 一个非IE 浏览器
<!--<![endif]-->
对于CSS的注释,例如:
<!--[if IE6.0]]
<style type="text/css">
div#box{width:500px;margin:10px; padding:10px; border:10px;}
</style>
<![endif]-->
<!--[if lt IE6.0]]
<style type="text/css">
div#box{width:530px;margin:10px; padding:10px; border:10px;}
</style>
<![endif]-->