lte:就是Less than or equal to的简写,也就是小于或等于的意思。lt :就是Less than的简写,也就是小于的意思。gte:就是Greater than or equal t
lte:就是Less than or equal to的简写,也就是小于或等于的意思。
lt :就是Less than的简写,也就是小于的意思。
gte:就是Greater than or equal to的简写,也就是大于或等于的意思。
gt :就是Greater than的简写,也就是大于的意思。
! : 就是不等于的意思,跟javascript里的不等于判断符相同
<!--[if lte IE 6]><![endif]-->
IE6及其以下版本可见
<!--[if lte IE 7]><![endif]-->
IE7及其以下版本可见
<!--[if IE 6]><![endif]-->
只有IE6版本可见
<![if !IE]><![endif]>除了IE以外的版本
<!--[if lt IE 8]><![endif]-->
IE8以下的版本可见
<!--[if gte IE 7]><![endif]-->
IE7及大于IE7的版本可见