Archive for: 01月, 2010

区分IE6,IE7,firefox三种浏览器的CSS HACK

Jan 06 2010 Published by admin under CSS HACK

区别IE6与FF:
       background:orange;*background:blue;

 

区别IE6与IE7:
       background:green !important;background:blue;

 

区别IE7与FF:
       background:orange; *background:green;

 

区别FF,IE7,IE6:
       background:orange;*background:green !important;*background:blue;

 

注:IE都能识别*;标准浏览器(如FF)不能识别*;
IE6能识别*,但不能识别 !important,
IE7能识别*,也能识别!important;
FF不能识别*,但能识别!important;

 

IE6 IE7 FF
* ×
!important ×

另外再补充一个,下划线”_”,
IE6支持下划线,IE7和firefox均不支持下划线。

于是大家还可以这样来区分IE6,IE7,firefox
: background:orange;*background:green;_background:blue;

注:不管是什么方法,书写的顺序都是firefox的写在前面,IE7的写在中间,IE6的写在最后面。

One response so far

IEtester0.4.2更新,官方网站页面更新

Jan 06 2010 Published by admin under IEtester,未分类

Known problems and limitations :

  • The Previous/Next buttons are not working properly
  • Focus is not working properly
  • Java applets are not working
  • Flash is not working on IE6 instance in user mode : A solution is to launch IETester as admin user and Flash will work.
  • CSS Filters are not working correctly in user mode : A solution is to launch IETester as admin user and CSS Filters will work.

更新/修复:
在上一个/下按钮不能正常工作
重点是不正常
Java小程序不工作
Flash不是IE6的工作在用户模式的实例:一个解决办法是启动以管理员用户和Flash将IETester。
的CSS过滤器无法正常工作在用户模式:一种解决办法是开展以管理员用户和CSS过滤器将IETester。

同时,我们对中文官方站的页面,进行了更新。希望大家喜欢。

7 responses so far