您的位置:首页 > 其它

ie hack

2015-07-28 09:55 120 查看


IE css margin-top 属性不起作用注意:

1.元素必须设置宽和高;

css hack:区分ie8和ie9:
.tooltip{margin-left:-2px\0}【ie8和ie9均可识别\0】 
:root .tooltip{margin-left:0\9}【只有ie9可识别:root】


js条件注释判断浏览器

<!--[if !IE]><!--> 除IE外都可识别 <!--<![endif]-->
<!--[if IE]> 所有的IE可识别 <![endif]-->
<!--[if IE 6]> 仅IE6可识别 <![endif]-->
<!--[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]-->
<!--[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]-->
<!--[if IE 7]> 仅IE7可识别 <![endif]-->
<!--[if lt IE 7]> IE7以及IE7以下版本可识别 <![endif]-->
<!--[if gte IE 7]> IE7以及IE7以上版本可识别 <![endif]-->
<!--[if IE 8]> 仅IE8可识别 <![endif]-->
<!--[if IE 9]> 仅IE9可识别 <![endif]-->

项目范例说明
![if !IE]The NOT operator. This is placed immediately in front of the feature, operator, or subexpression to reverse the Boolean meaning
of the expression.

NOT运算符。这是摆立即在前面的功能,操作员,或子表达式扭转布尔表达式的意义。
lt[if lt IE 5.5]The less-than operator. Returns true if the first argument is less than the second argument.

小于运算符。如果第一个参数小于第二个参数,则返回true。
lte[if lte IE 6]The less-than or equal operator. Returns true if the first argument is less than or equal to the second argument.

小于或等于运算。如果第一个参数是小于或等于第二个参数,则返回true。
gt[if gt IE 5]The greater-than operator. Returns true if the first argument is greater than the second argument.

大于运算符。如果第一个参数大于第二个参数,则返回true。
gte[if gte IE 7]The greater-than or equal operator. Returns true if the first argument is greater than or equal to the second argument.

大于或等于运算。如果第一个参数是大于或等于第二个参数,则返回true。
( )[if !(IE 7)]Subexpression operators. Used in conjunction with boolean operators to create more complex expressions.

子表达式运营商。在与布尔运算符用于创建更复杂的表达式。
&[if (gt IE 5)&(lt IE 7)]The AND operator. Returns true if all subexpressions evaluate to true

AND运算符。如果所有的子表达式计算结果为true,返回true
|[if (IE 6)|(IE 7)]The OR operator. Returns true if any of the subexpressions evaluates to true.

OR运算符。返回true,如果子表达式计算结果为true。
 

 例子:

<!--[if lt IE 9]>
加载CSS1
<!--[else]>
加载CSS2
<![endif]-->
这样有效是有效,但是用HTML VALIDATOR里,报错,因为这个不符合XHTML 1.1的规范,如果把ELSE语句去掉,则正确.如下:

<!--[if lt IE 9]>

加载CSS1(可以把要重写的写在这里).

<![endif]-->


最短JS判断IE6/IE7/IE8系列的写法


常用的

var isIE=!!window.ActiveXObject;
var isIE6=isIE&&!window.XMLHttpRequest;
var isIE8=isIE&&!!document.documentMode;
var isIE7=isIE&&!isIE6&&!isIE8;


 


最短的IE和IE6

var ie = !-[1,];
var ie6=!-[1,]&&!window.XMLHttpRequest;



区别各种IE浏览器的css写法

1.区别IE和非IE浏览器 

复制代码
代码如下:

#tip { 

background:blue; /*非IE 背景藍色*/ 

background:red \9; /*IE6、IE7、IE8背景紅色*/ 



2.区别IE6,IE7,IE8,FF 
【区别符号】:「\9」、「*」、「_」 
【示例】: 

复制代码
代码如下:

#tip { 

background:blue; /*Firefox 背景变蓝色*/ 

background:red \9; /*IE8 背景变红色*/ 

*background:black; /*IE7 背景变黑色*/ 

_background:orange; /*IE6 背景变橘色*/ 



【说明】:因为IE系列浏览器可读「\9」,而IE6和IE7可读「*」(米字号),另外IE6可辨识「_」(底线),因此可以依照顺序写下来,就会让浏览器正确的读取到自己看得懂得CSS语法,所以就可以有效区分IE各版本和非IE浏览器(像是Firefox、Opera、Google
Chrome、Safari等)。 

3.区别IE6、IE7、Firefox (方法 1) 
【区别符号】:「*」、「_」 
【示例】: 

复制代码
代码如下:

#tip { 

background:blue; /*Firefox背景变蓝色*/ 

*background:black; /*IE7 背景变黑色*/ 

_background:orange; /*IE6 背景变橘色*/ 



【说明】:IE7和IE6可读「*」(米字号),IE6又可以读「_」(底线),但是IE7却无法读取「_」,至于Firefox(非IE浏览器)则完全无法辨识「*」和「_」,因此就可以透过这样的差异性来区分IE6、IE7、Firefox 

4.区别IE6、IE7、Firefox (方法 2) 
【区别符号】:「*」、「!important」 
【示例】: 

复制代码
代码如下:

#tip { 

background:blue; /*Firefox 背景变蓝色*/ 

*background:green !important; /*IE7 背景变绿色*/ 

*background:orange; /*IE6 背景变橘色*/ 



【说明】:IE7可以辨识「*」和「!important」,但是IE6只可以辨识「*」,却无法辨识「!important」,至于Firefox可以读取「!important」但不能辨识「*」因此可以透过这样的差异来有效区隔IE6、IE7、Firefox。 

5.区别IE7、Firefox 
【区别符号】:「*」、「!important」 
【示例】: 

复制代码
代码如下:

#tip { 

background:blue; /*Firefox 背景变蓝色*/ 

*background:green !important; /*IE7 背景变绿色*/ 



【说明】:因为Firefox可以辨识「!important」但却无法辨识「*」,而IE7则可以同时看懂「*」、「!important」,因此可以两个辨识符号来区隔IE7和Firefox。 

6.区别IE6、IE7 (方法 1) 
【区别符号】:「*」、「_」 
【示例】: 

复制代码
代码如下:

#tip { 

*background:black; /*IE7 背景变黑色*/ 

_background:orange; /*IE6 背景变橘色*/ 



【说明】:IE7和IE6都可以辨识「*」(米字号),但IE6可以辨识「_」(底线),IE7却无法辨识,透过IE7无法读取「_」的特性就能轻鬆区隔IE6和IE7之间的差异。 

7.区别IE6、IE7 (方法 2) 
【区别符号】:「!important」 
【示例】: 

复制代码
代码如下:

#tip { 

background:black !important; /*IE7 背景变黑色*/ 

background:orange; /*IE6 背景变橘色*/ 



【说明】:因为IE7可读取「!important;」但IE6却不行,而CSS的读取步骤是从上到下,因此IE6读取时因无法辨识「!important」而直接跳到下一行读取CSS,所以背景色会呈现橘色。 

8.区别IE6、Firefox 
【区别符号】:「_」 
【示例】: 

复制代码
代码如下:

#tip { 

background:black; /*Firefox 背景变黑色*/ 

_background:orange; /*IE6 背景变橘色*/ 



【说明】:因为IE6可以辨识「_」(底线),但是Firefox却不行,因此可以透过这样的差异来区隔Firefox和IE6,有效达成CSS hack。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: