样例:

1. <!--[if !IE]> 除IE外都可识别
<![endif]-->

2. <!--[if IE]> 全部的IE可识别 <![endif]-->

3. <!--[if IE 5.0]> 仅仅有IE5.0能够识别 <![endif]-->

4. <!--[if IE 5]> 仅IE5.0与IE5.5能够识别 <![endif]-->

5. <!--[if gt IE 5.0]> IE5.0以及IE5.0以上版本号都能够识别 <![endif]-->

6. <!--[if IE 6]> 仅IE6可识别 <![endif]-->

7. <!--[if lt IE 6]> IE6以及IE6下面版本号可识别 <![endif]-->

8. <!--[if gte IE 6]> IE6以及IE6以上版本号可识别 <![endif]-->

9. <!--[if IE 7]> 仅IE7可识别 <![endif]-->

10. <!--[if lt IE 7]> IE7以及IE7下面版本号可识别 <![endif]-->

11. <!--[if gte IE 7]> IE7以及IE7以上版本号可识别 <![endif]-->

解释语句例如以下:

gt = selects greater than(高于)

lt = selects less than(低于)

gte = selects greater than or equal to(>=)

lte = selects less than or equal to(<=)

! = selects everything except what directly follows the "!"(全选,除了!)

最新文章

  1. LINQ系列:Linq to Object相等操作符
  2. MVC 请求处理流程(一)
  3. 陷阱~EF中的Update与Insert共用一个数据上下文
  4. ORA-01017 invalid username/password;logon denied&quot; (密码丢失解决方案)
  5. windows7__32位下安装python2.6.6
  6. [JIT_APP]Android SQLite简介
  7. css制作最简单导航栏
  8. HDU 3501 Calculation 2(欧拉函数)
  9. .aspx.cs传值与取值
  10. android 上传文件
  11. Meta http-equiv属性详解
  12. jdk源码-&gt;集合-&gt;HashSet
  13. UVA -580 组合数学
  14. 以太坊、Hyperledger Fabric和Corda,哪个更好?
  15. Linux 系统设置sh文件开机自启动
  16. DJango 基础 (4)
  17. c#对联合体的封装
  18. Golang的交互模式进阶-读取用户的输入
  19. 安卓程序代写 网上程序代写[原]Android开发技巧--ListView
  20. 《FPGA全程进阶---实战演练》第十四章 蜂鸣器操作

热门文章

  1. 它们的定义UIAlertView
  2. Cocos2d-x3.3它DrawPrimitivesTest分析
  3. android获取ip和本机的物理地址
  4. log4j的配置信息(转)
  5. 飞天熊猫游戏源代码android文本
  6. awk学习总结(两) How awk works and awk CMD in a file
  7. AspNetPager使用指南
  8. table中的边框合并实例
  9. 物理引擎Havok教程(一)搭建开发环境
  10. .NET中IDisposable接口的基本使用