选择符前缀法

<style>
*html .test{width:100px;} /*only for IE6*/
*+html .test{width:100px;}/*for IE6 7*/
</style

样式属性前缀法

<style>
.test{_width:100px;} /*only for IE6*/
 .test{*width:100px;}/*for IE6 7*/
</style
												

最新文章

  1. SQL Server 查询分解
  2. distinct order by 排序问题
  3. Logistic Regression逻辑回归
  4. petapoco IsNew
  5. 使用Git Bash for Windows
  6. iOS-解决iOS8及以上设置applicationIconBadgeNumber报错的问题
  7. Oracle数据库之三
  8. DDoS攻防战(一):概述
  9. css笔记09:选择器优先级
  10. Java 垃圾回收机制
  11. Java同步块(synchronized block)使用详解
  12. Sdut 2164 Binomial Coeffcients (组合数学) (山东省ACM第二届省赛 D 题)
  13. php 过滤emoji表情
  14. SPRING AOP ....0 can&#39;t find referenced pointcut
  15. 为你解读2017年Java开发前景如何
  16. elasticsearch中head插件中的定制增加用户名密码范例
  17. TensorFlow入门学习(让机器/算法帮助我们作出选择)
  18. Java反射,参数为数组
  19. 如何用python发邮件
  20. 使用v-for指令渲染列表

热门文章

  1. int与string转换
  2. 使用NGUI进行类似Button的操作
  3. Vsftp配置都没有问题 连接不上 530 Login incorrect 解决方法
  4. 求余区间的求和类问题 离线+线段树 HDU4228
  5. myeclipse导出javadoc时特殊字符 尖括号
  6. log4j输出到指定日志文件
  7. StrictMode使用详解
  8. 随机获取部分List&lt;Object&gt;集合
  9. webapp之路--apple私有属性apple-touch-icon
  10. makefile里有哪些target?