ie条件注释的使用

最近做网站为了网站的兼容性,用到了IE注释,主要是因为不想在CSS中使用CSS Hack了。顺便说一句,IE6 must died.
<!--[if IE]>这是Internet Explorer< ![endif]-->
<!--[if IE 5]>这是Internet Explorer 5< ![endif]-->

<!--[if IE 7]>这是Internet Explorer 7< ![endif]-->
<!--[if gte IE 5]>这是Internet Explorer 5 或者更高< ![endif]-->
<!--[if lt IE 6]>这是版小于6的Internet Explorer< ![endif]-->
<!--[if lte IE 5.5]>这是Internet Explorer 5.5或更低< ![endif]-->

注意两个特殊的语法:
gt: 大于 
lte: 小于或等于 
!IE 感叹号的使用